php mail S/MIME code example
Example 1: 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 2: php stristr
stristr ( string $haystack , mixed $needle [, bool $before_needle = FALSE ] ) : string