非常简单的 PHP strlen/if 问题

发布于 2024-11-13 09:38:25 字数 374 浏览 2 评论 0原文

我试图获取 2 个字符串,看看它们的长度,如果一个比另一个大,则将其设置为 $phonenumber,另一个设置为 $extension。见下文:

if(strlen($temp_ext) > 4)
{
    $extension = $temp_cid;
    $phonenumber = $temp_ext;
}
else
{
    $extension = $temp_ext;
    $phonenumber = $temp_cid;
}

不过,这看起来不起作用。我仍然在分机中获取 10 位数字,在 $phonenumber 变量中获取 4 位数字。我缺少什么?

I am trying to take 2 strings, see what length they are, and if one is larger than the other, set it as $phonenumber, and the other as $extension. See below:

if(strlen($temp_ext) > 4)
{
    $extension = $temp_cid;
    $phonenumber = $temp_ext;
}
else
{
    $extension = $temp_ext;
    $phonenumber = $temp_cid;
}

This doesn't look like it works, though. I am still getting 10 digit numbers in extension, and 4 digit numbers in the $phonenumber variable. What am I missing?

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

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

发布评论

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

评论(1

薆情海 2024-11-20 09:38:25

试试这个

if(strlen($temp_ext) > strlen($temp_cid))
{
    $extension = $temp_cid;
    $phonenumber = $temp_ext;
}
else
{
    $extension = $temp_ext;
    $phonenumber = $temp_cid;
}

希望这有帮助。

Try this

if(strlen($temp_ext) > strlen($temp_cid))
{
    $extension = $temp_cid;
    $phonenumber = $temp_ext;
}
else
{
    $extension = $temp_ext;
    $phonenumber = $temp_cid;
}

Hope this helps.

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