“PHP Verifique se a string contém um char” Respostas de código

PHP Verifique se a string contém palavras

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

PHP Encontre se a substring está em string

$result = strpos("haystack", "needle");

if ($result != false)
{
  // text found
}
Meaxis

Se o texto contiver palavra, então em php

if (strpos($haystack,$needle) !== false) {
    echo "$haystack contains $needle";
}
Ankur

PHP Verifique se a string contém um char

$haystack = 'This is my haystack that we shall check'
$has_A = strpos($haystack, 'A') !== false;
$has_a = strpos($haystack, 'a') !== false;
Vadris_

Verifique se a string contém

// returns true if $needle is a substring of $haystack
function contains($haystack, $needle){
    return strpos($haystack, $needle) !== false;
}
Friendly Hawk

Respostas semelhantes a “PHP Verifique se a string contém um char”

Perguntas semelhantes a “PHP Verifique se a string contém um char”

Procure respostas de código populares por idioma

Procurar outros idiomas de código