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.
14 lines
394 B
14 lines
394 B
--TEST--
|
|
Bug #55451 (substr_compare with NULL as default length)
|
|
--FILE--
|
|
<?php
|
|
var_dump(substr_compare("abcde", "ABCD", 0, NULL, false) != 0);
|
|
var_dump(substr_compare("abcde", "ABCD", 0, NULL, true) != 0);
|
|
var_dump(substr_compare("abcde", "ABCDE", 0, NULL, false) != 0);
|
|
var_dump(substr_compare("abcde", "ABCDE", 0, NULL, true) == 0);
|
|
?>
|
|
--EXPECT--
|
|
bool(true)
|
|
bool(true)
|
|
bool(true)
|
|
bool(true)
|
|
|