“Vérifiez si une chaîne contient une sous-chaîne en php” Réponses codées

PHP Vérifiez si la chaîne contient un mot

$myString = 'Hello Bob how are you?';
if (strpos($myString, 'Bob') !== false) {
    echo "My string contains Bob";
}
Grepper

Comment puis-je vérifier si une chaîne contient un mot spécifique php

$a = 'How are you?';

if (strpos($a, 'are') !== false) {
    echo 'true';
}
Indian Gooner

PHP contient une sous-chaîne


<?php
$mystring = 'abc';
$findme   = 'a';
$pos = strpos($mystring, $findme);

// Note our use of ===.  Simply == would not work as expected
// because the position of 'a' was the 0th (first) character.
if ($pos === false) {
    echo "The string '$findme' was not found in the string '$mystring'";
} else {
    echo "The string '$findme' was found in the string '$mystring'";
    echo " and exists at position $pos";
}
?>

Kaotik

Vérifiez si une chaîne contient une sous-chaîne en php

phpCopy<?php
$mystring = "This is a PHP program.";

if (strpos($mystring, "program.") !== false) {
    echo("True");
}
?>
CodeGuruDev

Vérifiez si une chaîne contient une sous-chaîne en php

phpCopy<?php
$mystring = "This is a php program.";
$search = "a";
if(preg_match("/{$search}/i", $mystring)) {
    echo "True"; } else {
    echo("False");
}
?>
CodeGuruDev

PHP Vérifiez si la chaîne contient un mot

$myString = 'Hello Bob how are you?';
if (strpos($myString, 'Bob') !== false) {
    echo "My string contains Bob";
}
Tejas Naik

Réponses similaires à “Vérifiez si une chaîne contient une sous-chaîne en php”

Questions similaires à “Vérifiez si une chaîne contient une sous-chaîne en php”

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code