我目前正在使用以下命令:
<php echo get('external_photo'); ?>
要从自定义字段中检索图像的完整路径,可以说:
http://www.mywebsite.com/images/test.jpg
我希望将图像的路径更改为:
http://www.mywebsite.com/images/thumbs/test_thumb.jpg
谁能告诉将子目录和后缀附加到图像路径的最佳方法是什么?
提前致谢!
使用 php dirname() 函数参考: http: //php.net/manual/en/function.dirname.php
然后只需使用“。” 在php中附加字符串的字符
<?php echo dirname(get('external_photo'))."/thunbs/test_thumb.jpg" ?>
<?php
$photoname = dirname(get('external_photo'))."/thumbs/".basename(get('external_photo'));
$photothumb = str_replace(".jpg", "_thumb.jpg", $photoname);
echo $photothumb;
} ?>