Warning: Undefined array key 0 in /home/yatsuba/yatsuba.com/public_html/wp-content/themes/amaru/functions.php on line 406

Warning: Attempt to read property "parent" on null in /home/yatsuba/yatsuba.com/public_html/wp-content/themes/amaru/functions.php on line 407

Warning: Attempt to read property "term_id" on null in /home/yatsuba/yatsuba.com/public_html/wp-content/themes/amaru/functions.php on line 413

Warning: Attempt to read property "cat_name" on null in /home/yatsuba/yatsuba.com/public_html/wp-content/themes/amaru/functions.php on line 413

セミコロンは命令文末に付け、命令途中には付けない


Warning: Undefined variable $pre in /home/yatsuba/yatsuba.com/public_html/wp-content/themes/amaru/functions.php on line 517

Warning: Undefined variable $pre in /home/yatsuba/yatsuba.com/public_html/wp-content/themes/amaru/functions.php on line 517
PHP

PHPはスクリプト宣言を行って範囲内に命令を記述し、各命令の文末には終了を示す「;」をつけます。

正確には「;」は命令の区切りを示すもので、命令が1つの場合や最後の命令であれば省略が可能です。 また逆に命令の途中にセミコロンを打ってはいけません。

通常の命令のセミコロン

文末にセミコロン

lt;?PHP echo "<p>hellow world!!</p>"; ?>

「;」は命令の区切りを示すもので、命令が1つの場合や最後の命令には不要です。

命令が1つなのでセミコロンなしでOK

lt;?PHP echo "<p>hellow world!!</p>" ?>

最後の命令にはセミコロンなしでOK

lt;?PHP
  echo "<p>hellow ";
  echo "world!!</p>"
?>

最後以外の命令にセミコロンがないとエラー

lt;?PHP
  echo "<p>hellow "
  echo "world!!</p>";
?>

条件分岐やループ処理のセミコロン

条件分岐やループ処理などは、命令を実行する部分にのみ「;」が必要です。
逆に判定している行にはセミコロンを書いてはいけないので気を付けましょう。

f( $mornung ) {
  echo "おはよう"; //ここにセミコロン
} else {
  echo "こんにちは"; //ここにセミコロン
}
or ($i = 1; $i <= 10; $i++) {
  echo "<p>" . $i ."</p>"; //ここにセミコロン
}

Warning: Undefined variable $category in /home/yatsuba/yatsuba.com/public_html/wp-content/themes/amaru/content.php on line 79

Warning: Attempt to read property "name" on null in /home/yatsuba/yatsuba.com/public_html/wp-content/themes/amaru/content.php on line 79

の記事

eyecatch

定義済み定数

eyecatch

PHPとは

eyecatch

長さ単位の基本

eyecatch

CSSでアニメーションを設定する

eyecatch

デバイスごとの解像度差をdevicePixelRatioで調整する方法

eyecatch

ウェブサイトの標準カラー16色とウェブセーフカラー216色


Warning: Undefined variable $category in /home/yatsuba/yatsuba.com/public_html/wp-content/themes/amaru/content.php on line 84

Warning: Attempt to read property "count" on null in /home/yatsuba/yatsuba.com/public_html/wp-content/themes/amaru/content.php on line 84
HOME