php-src/ext/standard/tests/strings/strrchr_variation12.phpt
2007-09-29 16:59:07 +00:00

48 lines
1.1 KiB
PHP
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

--TEST--
Test strrchr() function : usage variations - binary safe
--FILE--
<?php
/* Prototype : string strrchr(string $haystack, string $needle);
* Description: Finds the last occurrence of a character in a string.
* Source code: ext/standard/string.c
*/
/* Test strrchr() function: with binary values & null terminated strings passed to 'str1' & 'str2' */
echo "*** Test strrchr() function: binary safe ***\n";
$haystacks = array(
"Hello".chr(0)."World",
chr(0)."Hello World",
"Hello World".chr(0),
chr(0).chr(0).chr(0),
"Hello\0world",
"\0Hello",
"Hello\0"
);
for($index = 0; $index < count($haystacks); $index++ ) {
//needle as null string
var_dump( strrchr($haystacks[$index], "\0") );
//needle as NULL
var_dump( strrchr($haystacks[$index], NULL) );
}
echo "*** Done ***";
?>
--EXPECTF--
*** Test strrchr() function: binary safe ***
string(6) "World"
string(6) "World"
string(12) "Hello World"
string(12) "Hello World"
string(1) ""
string(1) ""
string(1) ""
string(1) ""
string(6) "world"
string(6) "world"
string(6) "Hello"
string(6) "Hello"
string(1) ""
string(1) ""
*** Done ***