TypePHP 编译器 https://swoole.com/aot/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

38 lines
848 B

--TEST--
Test strrchr() function : usage variations - multi line heredoc string for 'haystack'
--FILE--
<?php
/* Test strrchr() function by passing multi-line heredoc string for haystack and
* with various needles
*/
echo "*** Testing strrchr() function: with heredoc strings ***\n";
$multi_line_str = <<<EOD
Example of string
spanning multiple lines
using heredoc syntax.
EOD;
$needles = array(
"ing",
"",
" ",
$multi_line_str //needle as haystack
);
//loop through to test strrchr() with each needle
foreach($needles as $needle) {
var_dump( strrchr($multi_line_str, $needle) );
}
echo "*** Done ***";
?>
--EXPECT--
*** Testing strrchr() function: with heredoc strings ***
string(19) "ing heredoc syntax."
bool(false)
string(8) " syntax."
string(63) "Example of string
spanning multiple lines
using heredoc syntax."
*** Done ***