I have adjusted a small script to check backlinks. Yet I keep on getting the error
Warning: preg_match() [function.preg-match]: No ending delimiter \'/\' found in li
Try changing preg_match('/About \(.*?)\ ',$v,$s); To preg_match('/About \(.*?)\ /',$v,$s); / is a "delimiter" meaning it tells preg_match where the regex pattern ends. 0 讨论(0) 查看其它3个回答 发布评论: 提交评论 加载中... 验证码 看不清? 提交回复
preg_match('/About \(.*?)\ ',$v,$s); To preg_match('/About \(.*?)\ /',$v,$s); / is a "delimiter" meaning it tells preg_match where the regex pattern ends. 0 讨论(0) 查看其它3个回答 发布评论: 提交评论 加载中... 验证码 看不清? 提交回复
To preg_match('/About \(.*?)\ /',$v,$s); / is a "delimiter" meaning it tells preg_match where the regex pattern ends. 0 讨论(0) 查看其它3个回答 发布评论: 提交评论 加载中... 验证码 看不清? 提交回复
preg_match('/About \(.*?)\ /',$v,$s); / is a "delimiter" meaning it tells preg_match where the regex pattern ends. 0 讨论(0) 查看其它3个回答 发布评论: 提交评论 加载中... 验证码 看不清? 提交回复
/ is a "delimiter" meaning it tells preg_match where the regex pattern ends.
/