stristr
PHP -> Funkcie -> Funkcie pre prácu s reťazcami PHP -> stristr
Syntax
string stristr ( string $haystack, string $needle )
Popis
Príkaz jazyka PHP
Vrací haystack od prvního výskytu needle do konce. needle a haystack se zkoumají bez ohledu na velikost písmen.
Pokud needle nenajde, vrací FALSE.
Pokud needle není řetězec, převede se na integer a použije se jako číselná hodnota znaku.
Príklad
<?php
$email = 'USER@EXAMPLE.com';
$domain = stristr($email, 'e');
echo $domain; // ER@EXAMPLE.com
?>
$email = 'USER@EXAMPLE.com';
$domain = stristr($email, 'e');
echo $domain; // ER@EXAMPLE.com
?>
Pozri aj
strchr, strrchr, substr, ereg