0

我目前正在使用以下命令:

<php echo get('external_photo'); ?>

要从自定义字段中检索图像的完整路径,可以说:

http://www.mywebsite.com/images/test.jpg

我希望将图像的路径更改为:

http://www.mywebsite.com/images/thumbs/test_thumb.jpg

谁能告诉将子目录和后缀附加到图像路径的最佳方法是什么?

提前致谢!

4

2 回答 2

1

使用 php dirname() 函数参考: http: //php.net/manual/en/function.dirname.php

然后只需使用“。” 在php中附加字符串的字符

<?php echo dirname(get('external_photo'))."/thunbs/test_thumb.jpg" ?>
于 2013-03-16T04:41:00.453 回答
0
<?php 
$photoname = dirname(get('external_photo'))."/thumbs/".basename(get('external_photo'));
$photothumb = str_replace(".jpg", "_thumb.jpg", $photoname);
echo $photothumb;
} ?>
于 2013-03-16T05:51:34.300 回答