非常简单的 PHP strlen/if 问题
我试图获取 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个
希望这有帮助。
Try this
Hope this helps.