検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 133 for names (0.022 sec.)
Get the column names in result 13364
« cubrid_col_size cubrid_column_types » PHP Manual CUBRID 関数 Get the column names in result cu ... brid_column_names (PECL CUBRID >= 8.3.0) cubrid_column_names — Get t ... he column names in result 説明 cubrid_column_names ( resource $req ... _identifier ): array The cubrid_column_names() function is used to get the column names of the ... 戻り値 Array of string values containing the column names, when process is successful,失敗した場合に false を ...
https://man.plustar.jp/php/function.cubrid-column-names.html - [similar]
Get column types in result 11250
« cubrid_column_names cubrid_commit » PHP Manual CUBRID 関数 Get column types in result cubrid_c ... 04 AND nation_code='AUS' AND medal='G'" ); $column_names = cubrid_column_names ( $result ); $column_types = ... result ); printf ( "%-30s %-30s %-15s\n" , "Column Names" , "Column Types" , "Column Maxlen" ); for( $i = 0 ... , $size = count ( $column_names ); $i < $size ; $i ++) { $column_len = cubrid_fiel ... t , $i ); printf ( "%-30s %-30s %-15s\n" , $column_names [ $i ], $column_types [ $i ], $column_len ); } cub ...
https://man.plustar.jp/php/function.cubrid-column-types.html - [similar]
Returns array with of the names of the methods supported in this version of Libe... 9268
« Event::free Event::pending » PHP Manual Event Returns array with of the names of the methods s ... t::getSupportedMethods — Returns array with of the names of the methods supported in this version of Libeve ... pportedMethods (): array Returns array with of the names of the methods(backends) supported in this version ... tSupportedMethods , version , Libevent , methods , names , パラメータ ...
https://man.plustar.jp/php/event.getsupportedmethods.html - [similar]
カラムのメタデータを取得する 8773
« RowResult::getColumnNames RowResult::getWarnings » PHP Manual mysql_xdevapi\RowResult カラムの ... ute (); $session -> sql ( "INSERT INTO addressbook.names values ('John', 42), ('Sam', 33)" )-> execute (); ... sql = $session -> sql ( "SELECT * from addressbook.names" )-> execute (); $cols = $sql -> getColumns (); pr ... [name] => name [original_name] => name [table] => names [original_table] => names [schema] => addressbook ... NT [name] => age [original_name] => age [table] => names [original_table] => names [schema] => addressbook ...
https://man.plustar.jp/php/mysql-xdevapi-rowresult.getcolumns.html - [similar]
Get the maximum length of the specified field 8591
« cubrid_field_flags cubrid_field_name » PHP Manual CUBRID MySQL 互換関数 Get the maximum length ... 04 AND nation_code='AUS' AND medal='G'" ); $column_names = cubrid_column_names ( $result ); $column_types = ... result ); printf ( "%-30s %-30s %-15s\n" , "Column Names" , "Column Types" , "Column Maxlen" ); for( $i = 0 ... , $size = count ( $column_names ); $i < $size ; $i ++) { $column_len = cubrid_fiel ... t , $i ); printf ( "%-30s %-30s %-15s\n" , $column_names [ $i ], $column_types [ $i ], $column_len ); } cub ...
https://man.plustar.jp/php/function.cubrid-field-len.html - [similar]
ECC で利用可能な楕円曲線の名前を取得する 8531
« openssl_get_cipher_methods openssl_get_md_methods » PHP Manual OpenSSL 関数 ECC で利用可能な楕 ... 円曲線の名前を取得する openssl_get_curve_names (PHP 7 >= 7.1.0, PHP 8) openssl_get_curve_names... 能な楕円曲線の名前を取得する 説明 openssl_get_curve_names (): array | false 楕円曲線暗号(ECC) の公開鍵/秘密鍵 ... した場合に false を返します 例 例1 openssl_get_curve_names() の例 <?php $curve_names = openssl_get_curve_name ... s (); print_r ( $curve_names ); ?> 上の例の出力は、 たとえば以下のようになります ...
https://man.plustar.jp/php/function.openssl-get-curve-names.html - [similar]
Unregister all function names with the job servers 8338
« GearmanWorker::unregister GearmanWorker::wait » PHP Manual GearmanWorker Unregister all functi ... on names with the job servers GearmanWorker::unregisterAll ... manWorker::unregisterAll — Unregister all function names with the job servers 説明 public GearmanWorker::un ... job , Unregister , servers , all , GearmanWorker , names , unregisterAll , パラメータ , unregister ...
https://man.plustar.jp/php/gearmanworker.unregisterall.html - [similar]
Gets a record from a database as an associative array 8277
« dbase_get_header_info dbase_get_record » PHP Manual dBase 関数 Gets a record from a database a ... s an associative array dbase_get_record_with_names (PHP 5 < 5.3.0, dbase 5, dbase 7) dbase_get_record ... _with_names — Gets a record from a database as an associative ... array 説明 dbase_get_record_with_names ( resource $database , int $number ): array Gets a ... 変換されていました。 On error, dbase_get_record_with_names() will return false . 変更履歴 バージョン 説明 dba ...
https://man.plustar.jp/php/function.dbase-get-record-with-names.html - [similar]
X509 証明書をパースし、配列として情報を返す 7782
« openssl_x509_free openssl_x509_read » PHP Manual OpenSSL 関数 X509 証明書をパースし、配列として ... SSLCertificate | string $certificate , bool $short_names = true ): array | false openssl_x509_parse() は、指 ... は キー/証明書パラメータ を参照してください。 short_names short_names は、配列中でのデータの添字付けの 方法を ... 設定します。 short_names が true の場合 (デフォルト)、フィールドは短縮型で添 ... 情報 , 配列 , 証明 , パース , certificate , short , names , データ , OpenSSLCertificate , バージョン ...
https://man.plustar.jp/php/function.openssl-x509-parse.html - [similar]
スキーマのテーブルを取得する 7782
« Schema::getTable mysql_xdevapi\SchemaObject » PHP Manual mysql_xdevapi\Schema スキーマのテーブ ... te (); $session -> sql ( "CREATE TABLE addressbook.names(name text, age int)" )-> execute (); $session -> s ... ql ( "INSERT INTO addressbook.names values ('John', 42), ('Sam', 33)" )-> execute (); ... ute (); $session -> sql ( "INSERT INTO addressbook.names values ('Portland', 639863), ('Seattle', 704352)" ... i\Table)#3 (1) { ["name"]=> string(6) "cities" } ["names"]=> object(mysql_xdevapi\Table)#4 (1) { ["name"]=> ...
https://man.plustar.jp/php/mysql-xdevapi-schema.gettables.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 NEXT