検索

phrase: max: clip:
target: order:
Results of 131 - 140 of about 1568 for NAME (0.111 sec.)
入力ロケールの表示名を、適切に地域化して返す 3361
« Locale::getDisplayLanguage Locale::getDisplayRegion » PHP Manual Locale 入力ロケールの表示名を ... 、適切に地域化して返す Locale::getDisplayName locale_get_display_name (PHP 5 >= 5.3.0, PHP 7, PH ... P 8, PECL intl >= 1.0.0) Locale::getDisplayName -- locale_get_display_name — 入力ロケールの表示名を ... オブジェクト指向型 public static Locale::getDisplayName ( string $locale , ? string $displayLocale = null ... ): string | false 手続き型 locale_get_display_name ( string $locale , ? string $displayLocale = null ...
https://man.plustar.jp/php/locale.getdisplayname.html - [similar]
スキーマのテーブルを取得する 3361
« Schema::getSession Schema::getTables » PHP Manual mysql_xdevapi\Schema スキーマのテーブルを取得 ... 説明 public mysql_xdevapi\Schema::getTable ( string $name ): mysql_xdevapi\Table スキーマで与えられたテーブル ... の Table オブジェクトを取得します。 パラメータ name テーブルの名前 戻り値 Table オブジェクトを返します ... te (); $session -> sql ( "CREATE TABLE addressbook.names(name text, age int)" )-> execute (); $session -> ... sql ( "INSERT INTO addressbook.names values ('John', 42), ('Sam', 33)" )-> execute (); ...
https://man.plustar.jp/php/mysql-xdevapi-schema.gettable.html - [similar]
Return the value of a specific field in a specific row 3340
« cubrid_real_escape_string cubrid_unbuffered_query » PHP Manual CUBRID MySQL 互換関数 Return th ... being retrieved. Row numbers start at 0. field The name or offset of the field being retrieved. It can be ... the field's offset, the field's name, or the field's table dot field name (tablename.fi ... eldname). If the column name has been aliased ('select foo ... bar from...'), use the alias instead of the column name. If undefined, the first field is retrieved. 戻り値 ...
https://man.plustar.jp/php/function.cubrid-result.html - [similar]
テーブルの外部キーを含む結果セットを返す 3340
« db2_field_width db2_free_result » PHP Manual IBM DB2 関数 テーブルの外部キーを含む結果セットを ... string $qualifier , string $schema , string $table-name ): resource テーブルの外部キーを含む結果セットを返 ... gn_keys() 現在の接続のスキーマに一致します。 table-name テーブルの名前。 戻り値 指定したテーブルの外部キー ... HEM 主キーを含むテーブルのスキーマの名前。 PKTABLE_NAME 主キーを含むテーブルの名前。 PKCOLUMN_NAME 主キーを ... M 外部キーを含むテーブルのスキーマの名前。 FKTABLE_NAME 外部キーを含むテーブルの名前。 FKCOLUMN_NAME 外部キ ...
https://man.plustar.jp/php/function.db2-foreign-keys.html - [similar]
Retrieves the next row of data in a result set as an object 3340
« sqlsrv_fetch_array sqlsrv_fetch » PHP Manual SQLSRV 関数 Retrieves the next row of data in a r ... qlsrv_fetch_object ( resource $stmt , string $className = ? , array $ctorParams = ? , int $row = ? , int $ ... ied class with properties that match the row field names and values that correspond to the row field value ... eated by sqlsrv_query() or sqlsrv_execute() . className The name of the class to instantiate. If no class ... retrieve a row as a stdClass object. <?php $serverName = "serverName\sqlexpress" ; $connectionInfo = arra ...
https://man.plustar.jp/php/function.sqlsrv-fetch-object.html - [similar]
TableSelect のコンストラクタ 3340
« TableSelect::bind TableSelect::execute » PHP Manual mysql_xdevapi\TableSelect TableSelect のコ ... te (); $session -> sql ( "CREATE TABLE addressbook.names(name text, age int)" )-> execute (); $session -> ... sql ( "INSERT INTO addressbook.names values ('John', 42), ('Sam', 33)" )-> execute (); ... ( "addressbook" ); $table = $schema -> getTable ( "names" ); $result = $table -> select ( 'name' , 'age' ) ... -> where ( 'name like :name and age > :age' ) -> bind ([ 'name' => ...
https://man.plustar.jp/php/mysql-xdevapi-tableselect.construct.html - [similar]
複数ファイルのアップロード 3319
« 陥りやすい落とし穴 PUT メソッドのサポート » PHP Manual ファイルアップロードの処理 複数ファイル ... プロード 複数ファイルのアップロード input で異なった name を 使用することにより、複数のファイルをアップロード ... ltipart/form-data"> Send these files:<br /> <input name="userfile[]" type="file" /><br /> <input name="use ... 合、配列 $_FILES['userfile'] , $_FILES['userfile']['name'] , $_FILES['userfile']['size'] が設定されます。 例 ... されたとしましょう。この場合、 $_FILES['userfile']['name'][0] の値が review.html となり、 $_FILES['userfile ...
https://man.plustar.jp/php/features.file-upload.multiple.html - [similar]
配列からテーブルに挿入する 3319
« pg_convert pg_copy_to » PHP Manual PostgreSQL 関数 配列からテーブルに挿入する pg_copy_from (PH ... rom ( PgSql\Connection $connection , string $table_name , array $rows , string $separator = "\t" , string ... tion PgSql\Connection クラスのインスタンス。 table_name rows をコピーするテーブルの名前。 rows table_name ... にコピーするデータの配列。 rows の個々の値が table_name のひとつの行となります。 rows の個々の値は、 それぞ ... 例1 pg_copy_from() の例 <?php $db = pg_connect ( "dbname=publisher" ) or die( "Could not connect" ); $rows ...
https://man.plustar.jp/php/function.pg-copy-from.html - [similar]
Call a function in a Lua global variable 3319
« LuaSandbox LuaSandbox::disableProfiler » PHP Manual LuaSandbox Call a function in a Lua global ... ble 説明 public LuaSandbox::callFunction ( string $name , mixed ...$args ): array | bool Calls a function ... in a Lua global variable. If the name contains "." characters, the function is located v ... ia recursive table accesses, as if the name were a Lua expression. If the variable does not ex ... alues, see LuaSandboxFunction::call() . パラメータ name Lua variable name. args Arguments to the function. ...
https://man.plustar.jp/php/luasandbox.callfunction.html - [similar]
Remove a function definition 3298
« runkit7_function_redefine runkit7_function_rename » PHP Manual runkit7 関数 Remove a function ... on 説明 runkit7_function_remove ( string $function_name ): bool 注意 : デフォルトでは、 削除・リネーム・変 ... e を有効にする必要があります。 パラメータ function_name Name of the function to be deleted 戻り値 成功した ... unction_copy() - Copy a function to a new function name runkit7_function_redefine() - Replace a function d ... ition with a new implementation runkit7_function_rename() - Change a function's name 関連キーワード: funct ...
https://man.plustar.jp/php/function.runkit7-function-remove.html - [similar]