php 里的 if(): endif; 类似写法具体有何好处?

WBOY
リリース: 2016-06-06 20:44:10
オリジナル
1990 人が閲覧しました

<code class="lang-php"><?php if(!isset($a)):
    xxx;
endif;
</code></code>
ログイン後にコピー
ログイン後にコピー

回复内容:

<code class="lang-php"><?php if(!isset($a)):
    xxx;
endif;
</code></code>
ログイン後にコピー
ログイン後にコピー

主要是在 HTML 模板里用这种写法比较清晰,尤其当配合 short_open_tag 时。

<code class="lang-php"> if(isset($a)): ?>
    if($a): ?>
       <span>variable a is exist and not empty</span>
    endif; ?>
 endif; ?>
</code>
ログイン後にコピー

作为对比,要比下面的写法好看一点,尤其是当逻辑复杂的时候,很可能分不清花括号。

<code class="lang-php"> if(isset($a)) { ?>
    if($a) { ?>
       <span>variable a is exist and not empty</span>
    } ?>
 } ?>
</code>
ログイン後にコピー

http://php.net/manual/zh/control-structures.alternative-syntax.php
http://php.net/manual/zh/ini.core.php#ini.short-open-tag

関連ラベル:
php
ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
最新の問題
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート