标签: php
我想从google plus获取图片,像这里的网址图片
https://lh3.googleusercontent.com/-Sjhjjjjjj/........./s200-c/201gjghjphotoo1.jpg
如何将s200-c替换为s0以获取完整尺寸
s200-c
s0
我的代码但没有工作
$file = preg_replace("/.+\\/\\/(\\d+).+/", "s0", $file);
答案 0 :(得分:1)
PHP str_replace函数可以解决问题。
$file = str_replace("s200-c", "s0", $file);