File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / ext / standard / tests / strings / strrchr_variation3.phpt
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Tue Feb 21 23:48:04 2012 UTC (12 years, 5 months ago) by misho
Branches: php, MAIN
CVS tags: v5_4_3elwix, v5_4_29p0, v5_4_29, v5_4_20p0, v5_4_20, v5_4_17p0, v5_4_17, v5_3_10, HEAD
php

--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 ***

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>