| Best way to strip "http://" in simple PHP code
|
tnet21

msg:4471506 | 1:59 pm on Jul 1, 2012 (gmt 0) | I have a code like this: <div class="left">© <a href="<?php bloginfo('url'); ?>">="<?php bloginfo('url'); ?></a> | <a href="<?php bloginfo('url'); ?>/sitemap_index.xml">Sitemap</a></div> , and it is showing the following result: C [domain-name.com...] | Stemap I am wondering if there is any simple way to get rid of "http://" string using PHP ("inline", without using variables etc, like in some tutorials online) Thank you.
|
g1smd

msg:4471526 | 4:29 pm on Jul 1, 2012 (gmt 0) | Use preg_match to match all after the http:// part using:
'#http://(.*)#'
|
|
|