$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".
それを行う方法はありますか?私は正規表現の達人ではないので、どんな助けでも大歓迎です!
ありがとう!