php-src/ext/standard/tests/strings/stripos_basic1.phpt
Steph Fox 87fac43ac0 - killed off UEXPECT
- html_translation_table and setlocale tests are no longer relevant
- there are a number of ANSI-encoded files. Is this deliberate?
2008-05-27 10:50:48 +00:00

55 lines
1.4 KiB
PHP

--TEST--
Test stripos() function : basic functionality - with default arguments
--FILE--
<?php
/* Prototype : int stripos ( string $haystack, string $needle [, int $offset] );
* Description: Find position of first occurrence of a case-insensitive string
* Source code: ext/standard/string.c
*/
echo "*** Testing stripos() function: basic functionality ***\n";
$heredoc_str = <<<Identifier
Hello, World
Identifier;
echo "-- With default arguments --\n";
//regular string for haystack & needle
var_dump( stripos("Hello, World", "Hello") );
var_dump( stripos('Hello, World', "hello") );
var_dump( stripos("Hello, World", 'World') );
var_dump( stripos('Hello, World', 'WORLD') );
//single char for needle
var_dump( stripos("Hello, World", "o") );
var_dump( stripos("Hello, World", ",") );
//heredoc string for haystack & needle
var_dump( stripos($heredoc_str, "Hello, World") );
var_dump( stripos($heredoc_str, 'Hello') );
var_dump( stripos($heredoc_str, $heredoc_str) );
//unicode strings for haystack & needle
var_dump( stripos((unicode)"Hello, World", "Hello") );
var_dump( stripos('Hello, World', (unicode)"hello") );
//non-existing needle in haystack
var_dump( stripos("Hello, World", "ooo") );
echo "*** Done ***";
?>
--EXPECT--
*** Testing stripos() function: basic functionality ***
-- With default arguments --
int(0)
int(0)
int(7)
int(7)
int(4)
int(5)
int(0)
int(0)
int(0)
int(0)
int(0)
bool(false)
*** Done ***