时间:2021-07-01 10:21:17 帮助过:6人阅读
test
';
public static function replace_img_publish_path($content){
$pattern='/(<[img|IMG].+src=\"?.+)(images\/tmp\/)(.+\.(jpg|gif|bmp|bnp|png)\"?.+>)/';
$replacement="\${1}images/pub/\${3}";
print preg_replace($pattern, $replacement, $content);
exit;
}
test
$content = 'test
';
$content = preg_replace('#(?<=src="http://localhost:8080/story/images/)tmp/#', 'pub/', $content);
echo $content;
pub/1403530150545.jpg" style="width: 268px;">pub/1403530147265.jpg" style="width: 268px;">test
$content = 'test
';
replace_img_publish_path($content);
function replace_img_publish_path($content){
$pattern='/(<[img
------解决方案--------------------
IMG].+src=\"?.+)(images\/tmp\/)(.+\.(jpg
------解决方案--------------------
gif
------解决方案--------------------
bmp
------解决方案--------------------
bnp
------解决方案--------------------
png)\"?.+>)/U';
$replacement="\${1}images/pub/\${3}";
print preg_replace($pattern, $replacement, $content);
exit;
}
test