(PHP 8)
str_starts_with — Détermine si une chaîne commence par une sous-chaîne donnée
Effectue une vérification sensible à la casse indiquant si
haystack
commence par needle
.
haystack
La chaîne dans laquelle on effectue la recherche.
needle
La sous-chaîne à rechercher dans haystack
.
Exemple #1 Avec une chaîne vide ''
<?php
if (str_starts_with('abc', '')) {
echo "All strings start with the empty string";
}
?>
L'exemple ci-dessus va afficher :
All strings start with the empty string
Exemple #2 Démonstration de la sensibilité à la casse
<?php
$string = 'The lazy fox jumped over the fence';
if (str_starts_with($string, 'The')) {
echo "The string starts with 'The'\n";
}
if (str_starts_with($string, 'the')) {
echo 'The string starts with "the"';
} else {
echo '"the" was not found because the case does not match';
}
?>
L'exemple ci-dessus va afficher :
The string starts with 'The' "the" was not found because the case does not match
Note: Cette fonction gère les chaînes binaires.