PHP Filter FILTER_VALIDATE_URL Limitations
… research for those articles. It appears that the filter to validate URL string, namely FILTER_VALIDATE_URL, is not really adequate to the task. Take the following examples of the filter in an if statement. if ( filter_var($url,FILTER_VALIDATE_URL) ) { return true; }else{ return false; }; This … PHP Filter FILTER_VALIDATE_URL Limitations …