$restricted_images = array(
"http://api.tweetmeme.com/imagebutton.gif",
"http://stats.wordpress.com",
"http://entrepreneur.com.feedsportal.com/",
"http://feedads.g.doubleclick.net"
);
这是我想知道某个字符串是否具有那种字符串的图像列表。
例如:
$string = "http://api.tweetmeme.com/imagebutton.gif/elson/test/1231adfa/".
由于"http://api.tweetmeme.com/imagebutton.gif"
是在$restricted_images
数组中,也是变量内的字符串$string
,所以它会将变量替换$string
成一个单词"replace".
你知道怎么做吗?我不是 RegEx 的大师,所以任何帮助将不胜感激和奖励!
谢谢!