mirror of
https://github.com/holo-gfx/mangadex.git
synced 2024-11-25 03:28:21 -05:00
28 lines
559 B
PHP
28 lines
559 B
PHP
<?php
|
|
|
|
namespace JBBCode\validators;
|
|
|
|
require_once dirname(dirname(__FILE__)) . DIRECTORY_SEPARATOR . 'InputValidator.php';
|
|
|
|
/**
|
|
* An InputValidator for urls. This can be used to make [url] bbcodes secure.
|
|
*
|
|
* @author jbowens
|
|
* @since May 2013
|
|
*/
|
|
class UrlValidator implements \JBBCode\InputValidator
|
|
{
|
|
|
|
/**
|
|
* Returns true iff $input is a valid url.
|
|
*
|
|
* @param $input the string to validate
|
|
*/
|
|
public function validate($input)
|
|
{
|
|
$valid = filter_var($input, FILTER_VALIDATE_URL);
|
|
return !!$valid;
|
|
}
|
|
|
|
}
|