1#Case-insensitive strstr()
2#stristr(string $haystack, string $needle, bool $before_needle = false): string|false
3#Returns all of haystack starting from and including the first occurrence of needle to the end.
4
5<?php
6 $email = 'USER@EXAMPLE.com';
7 echo stristr($email, 'e'); // outputs ER@EXAMPLE.com
8 echo stristr($email, 'e', true); // outputs US
9?>
1
2<?php
3$array = array("size" => "XL", "color" => "gold");
4print_r(array_values($array));
5?>
6// ["XL","gold"]
7
8
1<?php
2 $string = 'Hello World!';
3 if(stristr($string, 'terre') === FALSE) {
4 echo '"terre" non trouvé dans la chaîne de caractères';
5 }
6// affiche : "terre" non trouvé dans la chaîne de caractères
7?>
1stristr ( string $haystack , mixed $needle [, bool $before_needle = FALSE ] ) : string
2