gpt4 book ai didi

php - 使用子字符串从动态变量中删除字符

转载 作者:行者123 更新时间:2023-12-04 05:53:53 25 4
gpt4 key购买 nike

我正在尝试使用 substr 从 URL 字符串中删除 4 个字符。目标是从字符串中删除 .jpg 并将其替换为“-220x124.jpg”。

我正在使用 wordpress 插件、高级自定义字段,但这不是这里的问题。问题是 subst 不能使用高级自定义字段代码 the_sub_field。它返回不删除最后 4 个字符的整个 URL 字符串。知道为什么吗?

代码如下:

<?php if(get_field('still_uploads')): ?>
<?php $i = 0; ?>
<?php while(the_repeater_field('still_uploads') && $i <= 0 ): ?>

<?php
$imagejesse = the_sub_field('still_image');
$imagejessenew = substr($imagejesse,0,-4);
?>

<?php echo $imagejessenew.'-220x124.jpg'; ?>
<?php $i++ ?>
<?php endwhile; ?>
<?php endif; ?>

你可以在这里看到一个例子: http://gicreative-dev.com/blog/genre/gay/

最佳答案

使用 strtr() function像那样:

$imagejessenew = strtr($imagejesse, array(
'.jpg' => '-220x124.jpg',
));

请参阅此证明: http://ideone.com/B8ZQe

关于php - 使用子字符串从动态变量中删除字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9755644/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com