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
346 B
19 lines
346 B
--TEST--
|
|
Test basename() function : usage variations with invalid paths
|
|
--SKIPIF--
|
|
<?php
|
|
if((substr(PHP_OS, 0, 3) == "WIN"))
|
|
die('skip not for Windows"');
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
setlocale(LC_CTYPE, "C");
|
|
var_dump(bin2hex(basename("\xff")));
|
|
var_dump(bin2hex(basename("a\xffb")));
|
|
|
|
echo "Done\n";
|
|
?>
|
|
--EXPECT--
|
|
string(2) "ff"
|
|
string(6) "61ff62"
|
|
Done
|
|
|