TypePHP 编译器
https://swoole.com/aot/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
407 B
19 lines
407 B
--TEST--
|
|
ord() with values not one byte long
|
|
--SKIPIF--
|
|
<?php
|
|
echo 'skip deprecation notices are not emitted in AOT';
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
|
|
var_dump(ord(""));
|
|
var_dump(ord("Hello"));
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Deprecated: ord(): Providing an empty string is deprecated in %s on line 3
|
|
int(0)
|
|
|
|
Deprecated: ord(): Providing a string that is not one byte long is deprecated. Use ord($str[0]) instead in %s on line 4
|
|
int(72)
|
|
|