我试图用PHP来定位自己,来自Perl,R,C和其他几种语言。
问题:
是否有PHP-isms替换以下Perl语法糖?
$y= $x || "I am undefined"; ## Default value
($x==1) or die "problem with $x"; ## Works under some circumstances
$y= ($x1==1) ? 2 : ($x2==2) ? 3 : ($x3==3) ? 2 : 5; ## Chaining needs () in PHP
print "Val: $array[$x]"; ## Does not work with $_SESSION[...] in PHP
当然,我可以编写具有相同功能的更长的函数/结构,但也许有标准的PHP简短方法来替换这些相当常见的有用结构。
我的其他语言经验没有暗示PHP有什么语法糖?
答案 0 :(得分:4)
1
您可以将?:
视为perl中的||
,但它实际上是三元/(三元组)运算符,其中第二个参数被省略并且暗示第一个参数($x
)。< / p>
$y= $x ?: "I am undefined"; # not before v5.3.x
您不能($x==1) or return|break|continue;
因此必须使用常规if
条件(单个语句可省略大括号)
if (!($x==1)) break;
至于链接三元,我担心如果你想让它像perl一样工作,事情并不简单
$y = ($x1==1 ? 2 :
($x2==2 ? 3 :
($x3==3 ? 2 : 5
))); // close as many times as there is rows above
如果您的变量没有在双引号内插入
,则可以使用大括号print "Val: {$array[$x]}";
2
至于语法糖,你可以使用
$arg += array(
"default" => 55,
);
像你一样
%arg = ("default" => 55, %arg);
在perl中,以便为缺少的哈希键提供默认值。