how to check if a string contains a substring in php
$a = 'How are you?';
if (strpos($a, 'are') !== false) {
echo 'true';
}
how to check if a string contains a substring in php
$a = 'How are you?';
if (strpos($a, 'are') !== false) {
echo 'true';
}
php find if string contains
if (strpos($string, 'substring') !== false) {
// do stuff
}
if text contains word then in php
if (strpos($haystack,$needle) !== false) {
echo "$haystack contains $needle";
}
php check if string contains a char
$haystack = 'This is my haystack that we shall check'
$has_A = strpos($haystack, 'A') !== false;
$has_a = strpos($haystack, 'a') !== false;
check string in php
$names = array("Maria", "Jhon", "John", 777, "Michael");
foreach ($names as $check) {
if(is_string($check)) {
echo "This is a string: ". $check. "<br>";
} else {
echo "This is not a string: ".$check. "<br>";
}
}
// using foreach and is_string menthods
// If you want to check an array if it contains number or not
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us