translating %d8% php 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 array_fill
array_fill ( int $start_index , int $num , mixed $value ) : array