1
0
mirror of https://github.com/php/php-src.git synced 2026-03-29 03:32:20 +02:00
Files
archived-php-src/ext/standard/tests/strings/bug45166.phpt

11 lines
119 B
PHP

--TEST--
Bug #45166 (substr() )
--FILE--
<?php
echo substr('cd', -3) . "\n";
?>
===DONE===
--EXPECT--
cd
===DONE===