如果变量中存在某个字符,则将字符附加到变量中?

发布于 2024-12-06 03:27:15 字数 258 浏览 0 评论 0原文

我将如何进行以下 also 检查 $word 的最后一个字符是否等于“h”,如果为真,则附加“es”?对“h”的检查将在对“s”的检查之前进行,如果为真,则无需检查“s”。

<?php

$word = "watch";

$newword = "$word".(substr($word, -1)=="s"?"":"s")." is the new word";

echo $newword;

?>

How would I go about making the following also check if the last character of $word is equal to "h" if true then append "es"? This check for "h" would be before the check for "s" and if true there would be no need to check for "s".

<?php

$word = "watch";

$newword = "$word".(substr($word, -1)=="s"?"":"s")." is the new word";

echo $newword;

?>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

时光是把杀猪刀 2024-12-13 03:27:15
switch (substr($word, -1)) {
    case 'h':
        $newword = $word . 'es';
        break;
    case 's':
        $newword = $word;
        break;
    default:
        $newword = $word;
}

或其某种变体。如果您尝试使单词复数,已经有很多解决方案,例如: 复数方法

switch (substr($word, -1)) {
    case 'h':
        $newword = $word . 'es';
        break;
    case 's':
        $newword = $word;
        break;
    default:
        $newword = $word;
}

Or some variation thereof. If you are trying to pluralize words, there are already a number of solutions, for example: pluralize method

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文