在这里,我们设置了一个函数,该函数将“ http://添加到字符串。假设我们传递了以下值-
example.com
我们想要的输出是“ http://”,即实际链接-
http://example.com
为此,可以将点(。)表示法和条件匹配与preg_match()一起使用。
<!DOCTYPE html>
<body>
<?php
function addingTheHTTPValue($stringValue) {
if (!preg_match("~^(?:f|ht)tps?://~i", $stringValue)) {
$stringValue = "http://" . $stringValue;
}
return $stringValue;
}
echo addingTheHTTPValue("example.com");
echo "<br>";
echo addingTheHTTPValue("https://example.com");
?>
</body>
</html>
输出结果
http://example.com
https://example.com