検索

phrase: max: clip:
target: order:
Results of 11 - 20 of about 152 for boolean (0.008 sec.)
検証フィルタ 6615
« フィルタの型 除去フィルタ » PHP Manual フィルタの型 検証フィルタ 検証フィルタ 検証用のフィルタ ... 一覧 ID 名前 オプション フラグ 説明 FILTER_VALIDATE_BOOLEAN , FILTER_VALIDATE_BOOL "boolean" default FILTER_NU ... lse"、"off"、"no" および "" の場合のみとなります。 boolean 以外の値については null を返します。 FILTER_VALIDA ... す。 変更履歴 バージョン 説明 8.0.0 FILTER_VALIDATE_BOOLEAN のエイリアスとして FILTER_VALIDATE_BOOL が追加され ...
https://man.plustar.jp/php/filter.filters.validate.html - [similar]
はじめに 6545
« 型 論理型 (boolean) » PHP Manual 型 はじめに はじめに PHP は 10 種類の基本型をサポートします。 ... かの例を以下に示します。 <?php $a_bool = TRUE ; // a boolean $a_str = "foo" ; // a string $a_str2 = 'foo' ; // ... n integer echo gettype ( $a_bool ); // prints out: boolean echo gettype ( $a_str ); // prints out: string // ...
https://man.plustar.jp/php/language.types.intro.html - [similar]
連想配列の値を、SQL 文として実行可能な形式に変換する 6475
« pg_consume_input pg_copy_from » PHP Manual PostgreSQL 関数 連想配列の値を、SQL 文として実行可能 ... れ以外の場合に false を返します。 注意 : この関数は、boolean 値も受付けることができ、 PostgreSQL の boolean 型に ... 変換します。 boolean 値の文字列表現にも対応しています。 null は、Postgr ...
https://man.plustar.jp/php/function.pg-convert.html - [similar]
変数が空であるかどうかを検査する 6405
« doubleval floatval » PHP Manual 変数操作 関数 変数が空であるかどうかを検査する empty (PHP 4, P ... ない、 または空や0の値が設定されている場合、 つまり boolean のコンテキストで false と見なされる場合、 true を返 ... します。 詳細は boolean への変換 を参照して下さい。 それ以外の場合は false ... 数 , 検査 , 空 , var , isset , 存在 , 注意 , 関数 , boolean , 宣言 ...
https://man.plustar.jp/php/function.empty.html - [similar]
変数の型をセットする 6405
« serialize strval » PHP Manual 変数操作 関数 変数の型をセットする settype (PHP 4, PHP 5, PHP 7, ... る変数。 type type の値は以下の命令のいずれかです。 "boolean" または "bool" "integer" または "int" "float" また ... 例 <?php $foo = "5bar" ; // string $bar = true ; // boolean settype ( $foo , "integer" ); // ここでは、$foo は ...
https://man.plustar.jp/php/function.settype.html - [similar]
列挙型の概要 6266
« 列挙型(Enum) 列挙型の基礎 » PHP Manual 列挙型(Enum) 列挙型の概要 列挙型の概要 (PHP 8 >= 8.1.0) ... です。 列挙型のもっとも有名な例は、組み込みの論理型(boolean) です。 これは、有効な値 true と false を持つ列挙型 ... 定義 , オブジェクト , Enum , case , クラス , 任意 , boolean , 論理 , 組み込み ...
https://man.plustar.jp/php/language.enumerations.overview.html - [similar]
型宣言 6207
« コールバック / Callable 型の相互変換 » PHP Manual 型 型宣言 型宣言 関数のパラメータや戻り値、 ... て扱われているということです。 たとえば、型の宣言に boolean を使った場合、 値が boolean クラスまたはインターフ ... ます。 bool 型ではありません。 <?php function test ( boolean $param ) {} test ( true ); ?> 上の例の PHP 8 での出 ... 力は、このようになります。: Warning: "boolean" will be interpreted as a class name. Did you mean ... "bool"? Write "\boolean" to suppress this warning in /in/9YrUX on line 2 F ...
https://man.plustar.jp/php/language.types.declarations.html - [similar]
変数の型が文字列かどうかを調べる 6138
« is_scalar isset » PHP Manual 変数操作 関数 変数の型が文字列かどうかを調べる is_string (PHP 4, ... 変数が整数型かどうかを検査する is_bool() - 変数が boolean であるかを調べる is_object() - 変数がオブジェクトか ... 型 , 検査 , float , 参考 , array , オブジェクト , boolean , int ...
https://man.plustar.jp/php/function.is-string.html - [similar]
Get the status of a background job 6138
« GearmanClient::getErrno GearmanClient::ping » PHP Manual GearmanClient Get the status of a bac ... supplied job handle. The first array element is a boolean indicating whether the job is even known, the seco ... nd is a boolean indicating whether the job is still running, and t ...
https://man.plustar.jp/php/gearmanclient.jobstatus.html - [similar]
型の相互変換 6068
« 型宣言 変数 » PHP Manual 型 型の相互変換 型の相互変換 PHP は、変数定義時に明示的な型定義を必要 ... ます。 <?php $foo = 10 ; // $foo は整数です $bar = (boolean) $foo ; // $bar はbooleanです ?> 使用可能なキャスト ... ます。 (int), (integer) - 整数へのキャスト (bool), (boolean) - 論理値へのキャスト (float), (double), (real) - ...
https://man.plustar.jp/php/language.types.type-juggling.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 NEXT