php check if string contains word
$myString = 'Hello Bob how are you?';
if (strpos($myString, 'Bob') !== false) {
echo "My string contains Bob";
}
php check if string contains word
$myString = 'Hello Bob how are you?';
if (strpos($myString, 'Bob') !== false) {
echo "My string contains Bob";
}
php if url contains
if(strpos($_SERVER['REQUEST_URI'], "string")) {
...
}
check if a string is url or not php
<?php
if(filter_var($imagePath, FILTER_VALIDATE_URL) === FALSE){
echo "Not valide URL";
}else{
echo "valide URL";
}
php check if string contains url
preg_match('/(http|ftp|mailto)/', $string, $matches);
var_dump($matches);
if browser url is having domain in it check using php
$url = 'http://' . $_SERVER['SERVER_NAME'] . $_SERVER['REQUEST_URI'];
if (!strpos($url,'mysql')) {
echo 'No mysql.'; //swapped with other echo statement
} else {
echo 'Mysql exists.';
}
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