Avec la sortie de PHP8, de nombreuses nouvelles fonctionnalités et fonctions ont été ajoutées à cette version. L'une des nouvelles fonctions est str_ends_with(), qui peut déterminer plus rapidement si une chaîne se termine par une chaîne spécifique.
Dans cet article, nous explorerons quelques scénarios pratiques de la fonction str_ends_with() et montrerons en quoi elle est plus efficace que les autres méthodes de jugement final.
str_ends_with() est une fonction introduite depuis PHP8.0 Elle peut déterminer si une chaîne se termine par une chaîne spécifiée. La définition de cette fonction est la suivante :
/** * Check if a string ends with a given substring. * * @param string $haystack The input string. * @param string $needle The substring to look for. * @return bool `true` if the input string ends with the given string, `false` otherwise. */ function str_ends_with(string $haystack, string $needle): bool {}
Cette fonction a deux paramètres :
Cette fonction renvoie un type booléen. Si la chaîne $haystack se termine par la chaîne $needle, elle renvoie true
; sinon, elle renvoie false
. true
;否则,返回false
。
让我们来看看如何使用str_ends_with()函数。假设我们有一个字符串hello world
,我们想要判断它是否以world
hello world
et que nous voulions déterminer si elle se termine par world
. Nous pouvons faire ceci : $string = 'hello world'; $endsWithWorld = str_ends_with($string, 'world'); if ($endsWithWorld) { echo 'Yes, the string ends with "world".'; } else { echo 'No, the string does not end with "world".'; }
Yes, the string ends with "world".
$string = 'hello world'; // 方法一:使用substr()函数和strlen()函数进行判断 if (substr($string, -strlen('world')) === 'world') { echo 'Yes, the string ends with "world".'; } else { echo 'No, the string does not end with "world".'; } // 方法二:使用preg_match()函数正则匹配 if (preg_match('/world$/', $string)) { echo 'Yes, the string ends with "world".'; } else { echo 'No, the string does not end with "world".'; }
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!