interface I {
// 我们可能天真地认为 PHP 常量始终是字符串。
const PHP = 'PHP 8.2';
}
class Foo implements I {
// 但实现类可以将其定义为数组。
const PHP = [];
}
interface I {
const string PHP = 'PHP 8.3';
}
class Foo implements I {
const string PHP = [];
}
// Fatal error: Cannot use array as value for class constant
// Foo::PHP of type string
class Foo {
const PHP = 'PHP 8.2';
}
$searchableConstant = 'PHP';
var_dump(constant(Foo::class . ":::{$searchableConstant}"));
class Foo {
const PHP = 'PHP 8.3';
}
$searchableConstant = 'PHP';
var_dump(Foo::{$searchableConstant});
#[\Override]
属性 RFCuse PHPUnit\Framework\TestCase;
final class MyTest extends TestCase {
protected $logFile;
protected function setUp(): void {
$this->logFile = fopen('/tmp/logfile', 'w');
}
protected function taerDown(): void {
fclose($this->logFile);
unlink('/tmp/logfile');
}
}
// 日志文件将永远不会被删除,因为方法名称输入错误 (taerDown vs tearDown)。
use PHPUnit\Framework\TestCase;
final class MyTest extends TestCase {
protected $logFile;
protected function setUp(): void {
$this->logFile = fopen('/tmp/logfile', 'w');
}
#[\Override]
protected function taerDown(): void {
fclose($this->logFile);
unlink('/tmp/logfile');
}
}
// Fatal error: MyTest::taerDown() has #[\Override] attribute,
// but no matching parent method exists
#[\Override]
属性,PHP 将确保父类或已实现接口中存在相同名称的方法。添加此属性可以明确表明覆盖父方法是故意的,并简化重构,因为将检测到已覆盖父方法的删除。class PHP {
public string $version = '8.2';
}
readonly class Foo {
public function __construct(
public PHP $php
) {}
public function __clone(): void {
$this->php = clone $this->php;
}
}
$instance = new Foo(new PHP());
$cloned = clone $instance;
// Fatal error: Cannot modify readonly property Foo::$php
class PHP {
public string $version = '8.2';
}
readonly class Foo {
public function __construct(
public PHP $php
) {}
public function __clone(): void {
$this->php = clone $this->php;
}
}
$instance = new Foo(new PHP());
$cloned = clone $instance;
$cloned->php->version = '8.3';
__clone
方法中修改一次 readonly
属性,以启用只读属性的深度克隆。json_validate()
函数 RFC 文档function json_validate(string $string): bool {
json_decode($string);
return json_last_error() === JSON_ERROR_NONE;
}
var_dump(json_validate('{ "test": { "foo": "bar" } }')); // true
var_dump(json_validate('{ "test": { "foo": "bar" } }')); // true
json_validate()
允许检查字符串是否是语法上有效的 JSON,同时比 json_decode()
更高效。Randomizer::getBytesFromString()
方法 RFC 文档// 此函数需要手动实现。
function getBytesFromString(string $string, int $length) {
$stringLength = strlen($string);
$result = '';
for ($i = 0; $i < $length; $i++) {
// random_int 对于测试来说不可播种,但它是安全的。
$result .= $string[random_int(0, $stringLength - 1)];
}
return $result;
}
$randomDomain = sprintf(
"%s.example.com",
getBytesFromString(
'abcdefghijklmnopqrstuvwxyz0123456789',
16,
),
);
echo $randomDomain;
// 可以传入 \Random\Engine 用于设置种子,
// 默认使用安全引擎。
$randomizer = new \Random\Randomizer();
$randomDomain = sprintf(
"%s.example.com",
$randomizer->getBytesFromString(
'abcdefghijklmnopqrstuvwxyz0123456789',
16,
),
);
echo $randomDomain;
Randomizer::getFloat()
和 Randomizer::nextFloat()
方法 RFC 文档// 返回介于 $min 和 $max 之间的随机浮点数,包含两端。
function getFloat(float $min, float $max) {
// 此算法对于特定输入是有偏差的,并且可能
// 返回给定范围之外的值。在用户层面上无法解决这个问题。
$offset = random_int(0, PHP_INT_MAX) / PHP_INT_MAX;
return $offset * ($max - $min) + $min;
}
$temperature = getFloat(-89.2, 56.7);
$chanceForTrue = 0.1;
// getFloat(0, 1) 可能会返回上限,即 1,
// 引入小的偏差。
$myBoolean = getFloat(0, 1) < $chanceForTrue;
$randomizer = new \Random\Randomizer();
$temperature = $randomizer->getFloat(
-89.2,
56.7,
\Random\IntervalBoundary::ClosedClosed,
);
$chanceForTrue = 0.1;
// Randomizer::nextFloat() 等效于
// Randomizer::getFloat(0, 1, \Random\IntervalBoundary::ClosedOpen)。
// 不会返回上限,即 1。
$myBoolean = $randomizer->nextFloat() < $chanceForTrue;
由于浮点数精度有限且存在隐式舍入,生成位于特定区间内的无偏浮点数并非易事,常用的用户端解决方案可能会生成有偏差的结果或超出请求范围的数字。
Randomizer 还扩展了两种方法,以无偏的方式生成随机浮点数。Randomizer::getFloat()
方法使用在Drawing Random Floating-Point Numbers from an Interval. Frédéric Goualard, ACM Trans. Model. Comput. Simul., 32:3, 2022.中发表的 γ-section 算法。
php -l foo.php bar.php foo.php 中未检测到语法错误
php -l foo.php bar.php foo.php 中未检测到语法错误 bar.php 中未检测到语法错误
命令行代码检查器现在接受可变数量的文件名输入进行代码检查。
DOMElement::getAttributeNames()
、DOMElement::insertAdjacentElement()
、DOMElement::insertAdjacentText()
、DOMElement::toggleAttribute()
、DOMNode::contains()
、DOMNode::getRootNode()
、DOMNode::isEqualNode()
、DOMNameSpaceNode::contains()
和 DOMParentNode::replaceChildren()
方法。IntlCalendar::setDate()
、IntlCalendar::setDateTime()
、IntlGregorianCalendar::createFromDate()
和 IntlGregorianCalendar::createFromDateTime()
方法。ldap_connect_wallet()
和 ldap_exop_sync()
函数。mb_str_pad()
函数。posix_sysconf()
、posix_pathconf()
、posix_fpathconf()
和 posix_eaccess()
函数。ReflectionMethod::createFromMethodName()
方法。socket_atmark()
函数。str_increment()
、str_decrement()
和 stream_context_set_options()
函数。ZipArchive::getArchiveFlag()
方法。zend.max_allowed_stack_size
用于设置允许的最大堆栈大小。n
现在将确保下一个索引为n + 1
而不是0
。range()
函数的更改。U_MULTIPLE_DECIMAL_SEPERATORS
常量已被弃用,建议使用U_MULTIPLE_DECIMAL_SEPARATORS
。MT_RAND_PHP
Mt19937 变体已被弃用。ReflectionClass::getStaticProperties()
不再可为空。assert.active
、assert.bail
、assert.callback
、assert.exception
和 assert.warning
已被弃用。get_class()
和 get_parent_class()
已被弃用。