PHP
 Computer >> コンピューター >  >> プログラミング >> PHP

PHPのdefine()関数


define()関数は定数を定義します。

構文

define(const_name,value,case_insensitive)

パラメータ

  • const_name −定数の名前。

  • −定数の値。

  • 大文字と小文字を区別しない −定数名では大文字と小文字を区別しないでください。

戻る

define()関数は、成功した場合はtrueを返し、失敗した場合はfalseを返します。

以下は、定数を定義する例です。

<?php
      define("message","This is it!");
   echo constant("message");
?>

Ouptut

以下は出力です。

This is it!

  1. PHPのdefined()関数

    PHPのdefined()関数は、定数が存在するかどうかをチェックします。 構文 defined(name) パラメータ 名前 −定数の名前。 戻る defined()関数は、定数が存在する場合はtrueを返し、そうでない場合はfalseを返します。 例 以下は、定数が存在するかどうかを確認する例です。 <?php    define("myConstant","This is it!");    echo defined("myConstant"); ?> 出力 以

  2. PHPのconstant()関数

    constant()関数は定数の値を返します。 構文 constant(const) パラメータ const −チェックする定数の名前 戻る constant()関数は定数の値を返し、定数が定義されていない場合はNULLを返します。 例 以下は、定数を定義する例です。 <?php    define("myConstant","This is it!");    echo constant("myConstant"); ?> 出力 以下は出力です。 This is