summaryrefslogtreecommitdiff
path: root/ext/standard/tests/strings/bug45166.phpt
blob: 60449e04f0f4336ea9ed0eedde7b7e5dbe956c04 (plain)
1
2
3
4
5
6
7
8
9
10
--TEST--
Bug #45166 (substr() )
--FILE--
<?php
	echo substr('cd', -3) . "\n";  
?>
===DONE===
--EXPECT--
cd
===DONE===