Answers for "php check if url contains string"

PHP
65

php check if string contains word

$myString = 'Hello Bob how are you?';
if (strpos($myString, 'Bob') !== false) {
    echo "My string contains Bob";
}
Posted by: Guest on August-06-2019
3

php if url contains

if(strpos($_SERVER['REQUEST_URI'], "string")) {
  ...
}
Posted by: Guest on November-18-2020
0

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";
  }
Posted by: Guest on August-26-2020
1

php check if string contains url

preg_match('/(http|ftp|mailto)/', $string, $matches);
var_dump($matches);
Posted by: Guest on August-28-2020
1

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.';
}
Posted by: Guest on December-04-2020

Code answers related to "php check if url contains string"

Browse Popular Code Answers by Language