ホームページ > バックエンド開発 > PHPチュートリアル > この if 文を正しく書くにはどうすればよいでしょうか? ?

この if 文を正しく書くにはどうすればよいでしょうか? ?

WBOY
リリース: 2016-06-23 14:15:25
オリジナル
897 人が閲覧しました

if ($_GET['lx'] == "1"):
$file_name = $r['titlepic'];
else
$file_name = $r['picurl'];
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 までご連絡ください。
最新の問題
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート