gpt4 book ai didi

php - 如何在 PHP 中用 "s"替换最后的 ""

转载 作者:可可西里 更新时间:2023-10-31 22:17:33 25 4
gpt4 key购买 nike

我需要知道如何用“”替换字符串中的最后一个“s”

假设我有一个像 testers 这样的字符串,输出应该是 tester。它应该只替换最后一个“s”而不是字符串中的每个“s”我怎样才能在 PHP 中做到这一点?

最佳答案

if (substr($str, -1) == 's')
{
$str = substr($str, 0, -1);
}

关于php - 如何在 PHP 中用 "s"替换最后的 "",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2534597/

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