检查字符串是否只包含PHP中的URL
2022-08-30 10:14:01
我想知道这是否是检查的正确方法,如果字符串只包含URL:
if (stripos($string, 'http') == 0 && !preg_match('/\s/',$string)) {
do_something();
}
stripos() 检查字符串是否以“http”
开头 preg_match() 检查字符串是否包含空格
如果不是这样,我假设字符串只是一个URL - 但这个假设有效吗?有没有更好的方法来实现这一目标?