Annotation of embedaddon/php/ext/standard/tests/strings/strripos_variation5.phpt, revision 1.1.1.1

1.1       misho       1: --TEST--
                      2: Test strripos() function : usage variations - heredoc string containing escape chars for 'haystack' argument
                      3: --FILE--
                      4: <?php
                      5: /* Prototype  : int strripos ( string $haystack, string $needle [, int $offset] );
                      6:  * Description: Find position of last occurrence of a case-insensitive 'needle' in a 'haystack'
                      7:  * Source code: ext/standard/string.c
                      8: */
                      9: 
                     10: /* Test strripos() function by passing heredoc string containing escape chars for haystack 
                     11:  *  and with various needles & offsets 
                     12: */
                     13: 
                     14: echo "*** Testing strripos() function: with heredoc strings ***\n";
                     15: echo "-- With heredoc string containing escape characters --\n";
                     16: $control_char_str = <<<EOD
                     17: Hello, World\n
                     18: Hello\tWorld
                     19: EOD;
                     20: var_dump( strripos($control_char_str, "\n") );
                     21: var_dump( strripos($control_char_str, "\t") );
                     22: var_dump( strripos($control_char_str, "\n", 12) );
                     23: var_dump( strripos($control_char_str, "\t", 15) );
                     24: 
                     25: ?>
                     26: ===DONE===
                     27: --EXPECTF--
                     28: *** Testing strripos() function: with heredoc strings ***
                     29: -- With heredoc string containing escape characters --
                     30: int(13)
                     31: int(19)
                     32: int(13)
                     33: int(19)
                     34: ===DONE===

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