这句if正确得如何写??

WBOY
发布: 2016-06-23 14:15:25
原创
870 人浏览过

if ($_GET['lx'] == "1"): 
$file_name = $r['titlepic'];
else
$file_name = $r['picurl'];
end if

这句正确得如何写??


回复讨论(解决方案)

if ($_GET['lx'] == "1"): $file_name = $r['titlepic'];else:$file_name = $r['picurl'];endif;
登录后复制

if..endif syntaxThe `alternative' way to write if/elseif/else statements, using if(); elseif(); else; endif; cannot be efficiently implemented without adding a large amount of complexity to the 3.0 parser. Because of this, the syntax has been changed: Example E-5. Migration: old if..endif syntaxif ($foo);    echo "yep\n";elseif ($bar);    echo "almost\n";else;    echo "nope\n";endif;   Example E-6. Migration: new if..endif syntaxif ($foo):    echo "yep\n";elseif ($bar):    echo "almost\n";else:    echo "nope\n";endif;   Notice that the semicolons have been replaced by colons in all statements but the one terminating the expression (endif). 
登录后复制

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板