Source: lesson_16_function_strpos.php | Résultat |
<?php /* Voir strpos On voit que si la chaine n'est pas trouvée, aucune valeur n'est retournée */ $chaine_1 = "biscuit à la crème"; $chaine_2 = "i"; $chaine_3 = "x"; echo "<table><tr><th>Chaîne 1</th><th>Chaîne 2</th> <th>strpos()</th></tr><tr>"; echo "<td>$chaine_1</td><td align=center>$chaine_2</td><td align=center>". strpos($chaine_1,$chaine_2)."</td><td></tr><tr>"; echo "<td>$chaine_1</td><td align=center>$chaine_3</td><td align=center>". strpos($chaine_1,$chaine_3)."</td><td></tr>"; echo "</table>";
| Chaîne 1 | Chaîne 2 |
strpos() |
---|
biscuit à la crème | i | 1 | | biscuit à la crème | x | | |
|