検索

phrase: max: clip:
target: order:
Results of 21 - 30 of about 7206 for 関数 (0.022 sec.)
SQLのcollate関数として使うPHP関数を登録する 2879
« SQLite3::createAggregate SQLite3::createFunction » PHP Manual SQLite3 SQLのcollate関数として使 ... うPHP関数を登録する SQLite3::createCollation (PHP 5 >= 5.3.11 ... P 7, PHP 8) SQLite3::createCollation — SQLのcollate関数として使うPHP関数を登録する 説明 public SQLite3::cre ... ame , callable $callback ): bool SQL文の中でcollate関数として使うPHP関数、またはユーザー定義の関数を登録しま ... パラメータ name 作成、または再定義するSQL collate 関数の名前 callback collation の振る舞いを定義する、PHP関 ...
https://man.plustar.jp/php/sqlite3.createcollation.html - [similar]
MySQL Native Driverプラグイン のアーキテクチャ 2864
« mysqlnd plugin APIを取得する mysqlnd のプラグインAPI » PHP Manual MySQL Native Driver プラグイ ... ct のメンバがオブジェクトのプロパティを表現します。関数を指している struct のメンバがメソッドを表現します。 ... が起動するとき、PHP はモジュールを初期化する (MINIT) 関数を登録されたエクステンションごとに呼び出します。これ ... ンジンが終了するときには、 エンジンが終了(MSHUTDOWN)関数をエクステンション毎に呼び出します。 PHPエンジンが起 ... します。リクエスト毎にPHPエンジンはリクエストの初期化関数をエクステンション毎に呼び出します。エクステンション ...
https://man.plustar.jp/php/mysqlnd.plugin.architecture.html - [similar]
定義済みの全ての関数を配列で返す 2850
« function_exists register_shutdown_function » PHP Manual 関数処理 関数 定義済みの全ての関数を配 ... 7, PHP 8) get_defined_functions — 定義済みの全ての関数を配列で返す 説明 get_defined_functions ( bool $excl ... ude_disabled = true ): array すべての定義済み関数を配列で返します。 パラメータ exclude_disabled 無効な ... 戻り値から除外するかどうかを指定します。 戻り値 この関数は、組込 (内部) 関数およびユーザー定義関数を共に含む ... 定義済み の全ての関数のリストを有する多次元配列を返します。内部関数は、 $ ...
https://man.plustar.jp/php/function.get-defined-functions.html - [similar]
SQL文で collate 関数として使うユーザー定義関数を登録する 2850
« PDO::sqliteCreateAggregate PDO::sqliteCreateFunction » PHP Manual SQLite (PDO) SQL文で collate ... 関数として使うユーザー定義関数を登録する PDO::sqliteCrea ... HP 8) PDO::sqliteCreateCollation — SQL文で collate 関数として使うユーザー定義関数を登録する 説明 public PDO ... string $name , callable $callback ): bool 警告 この関数は、 実験的 なものです。この関数の動作・ 名前・その他 ... のリリースにおいて変更される可能性があります。 この関数は自己責任で使用してください。 パラメータ name 作成ま ...
https://man.plustar.jp/php/pdo.sqlitecreatecollation.html - [similar]
内部関数かどうかを調べる 2850
« ReflectionFunctionAbstract::isGenerator ReflectionFunctionAbstract::isUserDefined » PHP Manual ... ReflectionFunctionAbstract 内部関数かどうかを調べる ReflectionFunctionAbstract::isInter ... HP 8) ReflectionFunctionAbstract::isInternal — 内部関数かどうかを調べる 説明 public ReflectionFunctionAbstr ... act::isInternal (): bool この関数が内部関数なのかユーザー定義関数なのかを調べます。 パ ... ラメータ この関数にはパラメータはありません。 戻り値 内部関数である場 ...
https://man.plustar.jp/php/reflectionfunctionabstract.isinternal.html - [similar]
その他のサービス 2850
« var_representation cURL » PHP Manual 関数リファレンス その他のサービス その他のサービス cURL — ... ry はじめに インストール/設定 定義済み定数 例 cURL 関数 CurlHandle — CurlHandle クラス CurlMultiHandle — C ... FTP はじめに インストール/設定 定義済み定数 例 FTP 関数 FTP\Connection — FTP\Connection クラス Gearman はじ ... PHP LDAP コールの使用法 LDAP コントロール 例 LDAP 関数 LDAP\Connection — LDAP\Connection クラス LDAP\Resu ... 定義済み定数 例 Memcache — Memcache クラス Memcache 関数 Memcached はじめに インストール/設定 定義済み定数 ...
https://man.plustar.jp/php/refs.remote.other.html - [similar]
関数に渡された引数の数を返す 2836
« func_get_args function_exists » PHP Manual 関数処理 関数 関数に渡された引数の数を返す func_num ... _args (PHP 4, PHP 5, PHP 7, PHP 8) func_num_args — 関数に渡された引数の数を返す 説明 func_num_args (): int ... 関数に渡された引数の数を取得します。 この関数は func_get_arg() および func_get_args() と組み合わせ ... て使用され、 ユーザー定義関数において可変長の引数リストを使用することができるよう ... になります。 パラメータ この関数にはパラメータはありません。 戻り値 現在のユーザー定 ...
https://man.plustar.jp/php/function.func-num-args.html - [similar]
変数のスコープ 2836
« 定義済みの変数 可変変数 » PHP Manual 変数 変数のスコープ 変数のスコープ 変数のスコープは、その ... クリプトの中でも利用可能です。しかし、 ユーザー定義の関数の中では変数の有効範囲はローカル関数の中となりま す。 ... 関数の中で使用された変数はデフォルトで有効範囲が関数内部に制限 されます。例えば、 <?php $a = 1 ; /* グロ ... ルな定義で上書きしない限りグローバル変数が自動的に関数で使用可能で ある C 言語と少々異なっていると気がつか ... 生じ る可能性があります。PHP では、グローバル変数は、関数の内部で使用す る場合、関数の内部でグローバルとして宣 ...
https://man.plustar.jp/php/language.variables.scope.html - [similar]
ユーザー定義関数であるかどうかを調べる 2836
« ReflectionFunctionAbstract::isInternal ReflectionFunctionAbstract::isVariadic » PHP Manual Ref ... lectionFunctionAbstract ユーザー定義関数であるかどうかを調べる ReflectionFunctionAbstract::i ... ctionFunctionAbstract::isUserDefined — ユーザー定義関数であるかどうかを調べる 説明 public ReflectionFunctio ... nAbstract::isUserDefined (): bool この関数がユーザー定義関数なのか内部関数なのかを調べます。 パ ... ラメータ この関数にはパラメータはありません。 戻り値 ユーザー定義関数 ...
https://man.plustar.jp/php/reflectionfunctionabstract.isuserdefined.html - [similar]
PHP の振る舞いの変更 2836
« 関数リファレンス APCu » PHP Manual 関数リファレンス PHP の振る舞いの変更 PHP の振る舞いの変更 ... Cache はじめに インストール/設定 定義済み定数 APCu 関数 APCUIterator — APCUIterator クラス Componere はじめ ... ponere\Value — The Componere\Value class Componere 関数 エラー処理 — エラー処理およびログ記録 はじめに イン ... ストール/設定 定義済み定数 例 エラー処理関数 FFI — Foreign Function Interface はじめに インスト ... じめに インストール/設定 コードの事前ロード OPcache 関数 出力制御 — 出力バッファリング制御 はじめに インスト ...
https://man.plustar.jp/php/refs.basic.php.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 NEXT