Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要一小部分帮助,我不记得 requulare exp。告诉我它是否是一个 URL,我需要知道它的起始地址 http:// 与否,如果它没有 http:// 在开始我需要把它放进去,如果它有我需要做没有什么。
Hobe sombardy 可以帮助我解决这个问题,非常感谢您的帮助。
模板 1:
<a href="http://myurl.com">Title 1</a>
模板 2:
<a href="www.myurl2.com">Title 2</a>
像这样使用 preg_replace
$url = 'http://www.yahoo.com'; echo 'http://' . preg_replace( '~^http://~', '', $url );