summaryrefslogtreecommitdiff
path: root/ext/standard/tests/strings/bug45166.phpt
blob: eb32e739e0492a3c3f565cc62202378cb3417e48 (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===