strstr -- Find first occurrence of a string
strstr() example
<?php
$email = 'user@example.com';
$domain = strstr($email, '@');
echo $domain; // prints @example.com
?>
stristr -- Case-insensitive strstr()
stristr() example
<?php
$email = 'USER@EXAMPLE.com';
echo stristr($email, 'e');
// outputs ER@EXAMPLE.
This comment has been removed by the author.
ReplyDelete