php stristr code example
Example 1: php array_values
<?php
$array = array("size" => "XL", "color" => "gold");
print_r(array_values($array));
?>
// ["XL","gold"]
Example 2: stristr php
<?php
$string = 'Hello World!';
if(stristr($string, 'terre') === FALSE) {
echo '"terre" non trouvé dans la chaîne de caractères';
}
// affiche : "terre" non trouvé dans la chaîne de caractères
?>
Example 3: php stristr
stristr ( string $haystack , mixed $needle [, bool $before_needle = FALSE ] ) : string