从rss Feed

时间:2015-06-30 12:29:55

标签: php image image-processing rss

我有一个未设置图像大小的RSS Feed,如图像显示的那样---

**hello.tv/imagecache/{size}/cloud/content-images**

所以这里如果我将它替换为300x400而不是图像。那么现在如何在rss feed保存到数据库之前更改图像大小。

我正在研究php。

1 个答案:

答案 0 :(得分:0)

如果你只需要用字符串'300x400'替换{size},你可以使用像PHP内置的str_replace函数那样简单的东西。

$str = '**hello.tv/imagecache/{size}/cloud/content-images**'
$replacedStr = str_replace('{size}', '300x400', $str);

http://php.net/str_replace