Answers for "how to check string is url or not in php"

PHP
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

Code answers related to "how to check string is url or not in php"

Browse Popular Code Answers by Language