1
0
mirror of https://github.com/php/php-src.git synced 2026-04-18 21:41:22 +02:00
Files
archived-php-src/ext/standard/tests/strings/basename_invalid_path_win.phpt
Máté Kocsis 7aacc705d0 Add many missing closing PHP tags to tests
Closes GH-5958
2020-08-09 22:03:36 +02:00

17 lines
258 B
PHP

--TEST--
Test basename() function : usage variations with invalid paths
--SKIPIF--
<?php
if((substr(PHP_OS, 0, 3) != "WIN"))
die('skip Run only on Windows"');
?>
--FILE--
<?php
var_dump(basename("\377"));
echo "Done\n";
?>
--EXPECTF--
string(1) "%c"
Done