summaryrefslogtreecommitdiff
path: root/ext/standard/tests/strings/strrchr_variation3.phpt
blob: e22efe9e5cbd5a117217031b1a7331923f3ead7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
--TEST--
Test strrchr() function : usage variations - multi line heredoc string for 'haystack'
--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 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 ***";
?>
--EXPECTF--
*** 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 ***