Answers for "check is this an url or not in laravel"

PHP
0

laravel check if string is url

if (filter_var($string, FILTER_VALIDATE_URL)) { 
  // you're good
}
Posted by: Guest on July-06-2021

Code answers related to "check is this an url or not in laravel"

Browse Popular Code Answers by Language