bug^君 2011-05-12 01:50 采纳率: 25%
浏览 473
已采纳

为变量赋予默认值的最佳方法(simulate Perl | | ,|)

I love doing this sort of thing in Perl: $foo = $bar || $baz to assign $baz to $foo if $bar is empty or undefined. You also have $foo ||= $bletch which will only assign $bletch to $foo if $foo is not defined or empty.

The ternary operator in this situation is tedious and tiresome. Surely there's a simple, elegant method available in PHP?

Or is the only answer a custom function that uses isset()?

转载于:https://stackoverflow.com/questions/5972516/best-way-to-give-a-variable-a-default-value-simulate-perl

  • 写回答

5条回答 默认 最新

  • 北城已荒凉 2011-05-12 01:52
    关注

    PHP 5.3 has a shorthand ?: operator:

    $foo = $bar ?: $baz;
    

    Which assigns $bar if it's not an empty value (I don't know how this would be different in PHP from Perl), otherwise $baz, and is the same as this in Perl and older versions of PHP:

    $foo = $bar ? $bar : $baz;
    

    But PHP does not have a compound assignment operator for this (that is, no equivalent of Perl's ||=).

    Also, PHP will make noise if $bar isn't set unless you turn notices off. There is also a semantic difference between isset() and empty(). The former returns false if the variable doesn't exist, or is set to NULL. The latter returns true if it doesn't exist, or is set to 0, '', false or NULL.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(4条)

报告相同问题?

悬赏问题

  • ¥15 对接wps接口实现获取元数据
  • ¥20 给自己本科IT专业毕业的妹m找个实习工作
  • ¥15 用友U8:向一个无法连接的网络尝试了一个套接字操作,如何解决?
  • ¥30 我的代码按理说完成了模型的搭建、训练、验证测试等工作(标签-网络|关键词-变化检测)
  • ¥50 mac mini外接显示器 画质字体模糊
  • ¥15 TLS1.2协议通信解密
  • ¥40 图书信息管理系统程序编写
  • ¥20 Qcustomplot缩小曲线形状问题
  • ¥15 企业资源规划ERP沙盘模拟
  • ¥15 树莓派控制机械臂传输命令报错,显示摄像头不存在