php – 检查url是否在开头有http://如果不是

前端之家收集整理的这篇文章主要介绍了php – 检查url是否在开头有http://如果不是前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
参见英文答案 > How to add http:// if it doesn’t exists in the URL?8个
我目前正在使用自定义字段输出编辑wordpress主题.
我已成功完成所有编辑,一切正常.
我的问题是,如果一个网址被提交到自定义字段中,那么回声正好在那里,所以如果有人进入www.somesite.com,回声就是这样,并将其添加到域的末尾:www.mysite .com www.somesite.com.
我想检查提供的链接是否在开头有http://前缀,如果它有两个,但如果没有在URL之前回显http://.

我希望我能尽可能地解释我的问题.

$custom = get_post_meta($post->ID,'custom_field',true);

<?PHP if ( get_post_meta($post->ID,true) ) : ?>
    <a href="<?PHP echo $custom ?>"> <img src="<?PHP echo bloginfo('template_url');?>/lib/images/social/image.png"/></a>
    <?PHP endif; ?>
parse_url()可以帮助……
$parsed = parse_url($urlStr);
if (empty($parsed['scheme'])) {
    $urlStr = 'http://' . ltrim($urlStr,'/');
}
原文链接:https://www.f2er.com/php/136514.html

猜你在找的PHP相关文章