我的代码是:
if (!preg_match('^http(s)?://(*)?\.mysite.com(\*)^', $url))
{
echo "<strong>Error</strong>: Invalid mysite.com link or could shorten link";
}
我得到了:
Warning: preg_match() [function.preg-match]:
Compilation failed: nothing to repeat at offset 12
我正在开发类似于bit.ly的链接缩短器,但我只希望它缩短来自我的特定站点的链接。
我需要一些帮助来解决这个错误。