使用正则表达式逃脱的网站网址

时间:2014-01-11 07:38:57

标签: php regex

我的代码是

<?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

是否可以使用正则表达式..如果有可能请告诉我如何...

1 个答案:

答案 0 :(得分:1)

我的建议是使用已设置的功能(例如urlencode())来转义数据以包含在URL中。有关详情,请参阅此页:http://us1.php.net/urlencode