我正在尝试检查字符串是否以http. 我该怎么做这个检查?
http
$string1 = 'google.com'; $string2 = 'http://www.google.com';
使用 str_starts_with 函数:
str_starts_with('http://www.google.com', 'http')
使用 substr 函数返回字符串的一部分。
substr( $string_n, 0, 4 ) === "http"
如果您试图确保它不是另一个协议。我会http://改用,因为 https 也会匹配,还有其他东西,比如 http-protocol.com。
http://
substr( $string_n, 0, 7 ) === "http://"
一般来说:
substr($string, 0, strlen($query)) === $query