我的代碼逃逸是網站網址使用正則表達式
<?php
$crunch = "http://thecruncworld.com";
$something = preg_match'/('/^(([\w]+:)?\/\/)?(((([\d\w]|%[a-xA-x\d]{2,2})/'
echo $something;
?>
這裏我只需要逃避自己的網站網址與正則表達式。當我執行這個代碼,我得到這樣的錯誤..
(!) Parse error: syntax error, unexpected ''/('' (T_CONSTANT_ENCAPSED_STRING) in C:\wamp\www\yeah.php on line 3
它是possbile正則表達式..如果它的可能性請告訴我如何..
預期產量是多少? – thefourtheye
你是什麼意思'逃脫'的網址? – Keeler
我需要輸出作爲..匹配網址:http://thecrunchworld.com – SAarah