1. <p><img src="file:///C:/Users/Administrator/Desktop/测试/data/5201608091357/contentPic/麻短裙16/1643805e-1.jpg" /><br /><img src="file:///C:/Users/Administrator/Desktop/测试/data/5201608091357/contentPic/麻短裙16/1643805e-2.jpg" /><br /><img src="file:///C:/Users/Administrator/Desktop/测试/data/5201608091357/contentPic/麻短裙16/1643805e-3.jpg" /><br />
2. 이제 src의 이미지 경로를 일괄적으로 교체해야 합니다. 경로를 /upload/img/로 변경하면 됩니다.
1. <p><img src="file:///C:/Users/Administrator/Desktop/测试/data/5201608091357/contentPic/麻短裙16/1643805e-1.jpg" /><br /><img src="file:///C:/Users/Administrator/Desktop/测试/data/5201608091357/contentPic/麻短裙16/1643805e-2.jpg" /><br /><img src="file:///C:/Users/Administrator/Desktop/测试/data/5201608091357/contentPic/麻短裙16/1643805e-3.jpg" /><br />
2. 이제 src의 이미지 경로를 일괄적으로 교체해야 합니다. 경로를 /upload/img/로 변경하면 됩니다.
str_replace('file:///C:/Users/Administrator/Desktop/test/data/5201608091357/contentPic/ 린넨 스커트 16/','/upload/img/',$str)
1. 접두사가 고정되어 있으므로 실제로는 str_replace를 사용하는 것이 더 효율적입니다.
2. 수정되지 않은 경우 다음 방법을 참고하세요preg_replace_callback
3. 디버깅 시 소스코드를 꼭 확인해주세요.
<code><?php $str = '<p><img src="file:///C:/Users/Administrator/Desktop/测试/data/5201608091357/contentPic/麻短裙16/1643805e-1.jpg" /><br /><img src="file:///C:/Users/Administrator/Desktop/测试/data/5201608091357/contentPic/麻短裙16/1643805e-2.jpg" /><br /><img src="file:///C:/Users/Administrator/Desktop/测试/data/5201608091357/contentPic/麻短裙16/1643805e-3.jpg" /><br />'; echo $str; $pregRule = "/file:\/\/\/C:\/Users\/Administrator\/Desktop\/测试\/data\/5201608091357\/contentPic\//"; $result = preg_replace_callback($pregRule, function(){ return "/upload/img/"; }, $str); echo $result;</code>