検索

phrase: max: clip:
target: order:
Results of 311 - 320 of about 1568 for Name (0.115 sec.)
Create new MongoDB Manager 2858
« MongoDB\Driver\Manager::addSubscriber MongoDB\Driver\Manager::createClientEncryption » PHP Man ... uri A » mongodb:// connection URI: mongodb://[username:password@]host1[:port1][,host2[:port2],...[,hostN[ ... FC 3986 . This is particularly relevant to the username and password, which can often include special char ... thDb component may be used to specify the database name associated with the user's credentials; however th ... s , which will overwrite any options with the same name in the uri parameter. uriOptions Option Type Descr ...
https://man.plustar.jp/php/mongodb-driver-manager.construct.html - [similar]
結果セットから全ての行を取得する 2858
« RowResult::__construct RowResult::fetchOne » PHP Manual mysql_xdevapi\RowResult 結果セットから ... 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" ); $row = $table -> select ( 'name' , 'age' )-> ... とえば以下のようになります。 Array ( [0] => Array ( [name] => John [age] => 42 ) [1] => Array ( [name] => Sa ...
https://man.plustar.jp/php/mysql-xdevapi-rowresult.fetchall.html - [similar]
プリペアドステートメントから結果を取得し、バインド変数に格納する 2858
« mysqli_stmt::execute mysqli_stmt::$field_count » PHP Manual mysqli_stmt プリペアドステートメン ... sqli_connect_error ()); exit(); } $query = "SELECT Name, CountryCode FROM City ORDER by ID DESC LIMIT 150, ... 結果変数をバインドします */ $stmt -> bind_result ( $name , $code ); /* 値を取得します */ while ( $stmt -> f ... etch ()) { printf ( "%s (%s)\n" , $name , $code ); } /* ステートメントを閉じます */ $stmt ... sqli_connect_error ()); exit(); } $query = "SELECT Name, CountryCode FROM City ORDER by ID DESC LIMIT 150, ...
https://man.plustar.jp/php/mysqli-stmt.fetch.html - [similar]
プリペアドステートメントから結果セットのメタデータを返す 2858
« mysqli_stmt::reset mysqli_stmt::send_long_data » PHP Manual mysqli_stmt プリペアドステートメン ... $mysqli -> query ( "CREATE TABLE friends (id int, name varchar(20))" ); $mysqli -> query ( "INSERT INTO f ... Ulf')" ); $stmt = $mysqli -> prepare ( "SELECT id, name FROM friends" ); $stmt -> execute (); /* メタデータ ... $field = $result -> fetch_field (); printf ( "Fieldname: %s\n" , $field -> name ); /* 結果セットを閉じます ... qli_query ( $link , "CREATE TABLE friends (id int, name varchar(20))" ); mysqli_query ( $link , "INSERT IN ...
https://man.plustar.jp/php/mysqli-stmt.result-metadata.html - [similar]
メソッドの配列を取得する 2858
« ReflectionClass::getMethod ReflectionClass::getModifiers » PHP Manual ReflectionClass メソッド ... rray(3) { [0]=> object(ReflectionMethod)#2 (2) { ["name"]=> string(11) "firstMethod" ["class"]=> string(5) ... "Apple" } [1]=> object(ReflectionMethod)#3 (2) { ["name"]=> string(12) "secondMethod" ["class"]=> string(5 ... "Apple" } [2]=> object(ReflectionMethod)#4 (2) { ["name"]=> string(11) "thirdMethod" ["class"]=> string(5) ... rray(2) { [0]=> object(ReflectionMethod)#2 (2) { ["name"]=> string(12) "secondMethod" ["class"]=> string(5 ...
https://man.plustar.jp/php/reflectionclass.getmethods.html - [similar]
Yaf_Route_Supervar クラス 2837
« Yaf_Route_Static::route Yaf_Route_Supervar::assemble » PHP Manual Yaf Yaf_Route_Supervar クラス ... oute_Interface { /* プロパティ */ protected $ _var_name ; /* メソッド */ public __construct ( string $supe ... rvar_name ) public assemble ( array $info , array $query = ? ... equest_Abstract $request ): bool } プロパティ _var_name 目次 Yaf_Route_Supervar::assemble — URL を組み立て ...
https://man.plustar.jp/php/class.yaf-route-supervar.html - [similar]
タイムゾーンの名前を返す 2837
« DateTimeZone::getLocation DateTimeZone::getOffset » PHP Manual DateTimeZone タイムゾーンの名前 ... を返す DateTimeZone::getName timezone_name_get (PHP 5 >= 5.2.0, PHP 7, PHP 8) D ... ateTimeZone::getName -- timezone_name_get — タイムゾーンの名前を返す 説 ... 明 オブジェクト指向型 public DateTimeZone::getName (): string 手続き型 timezone_name_get ( DateTimeZo ... 返します。 関連キーワード: 名前 , DateTimeZone , getName , timezone , string , getLocation , getOffset , pu ...
https://man.plustar.jp/php/datetimezone.getname.html - [similar]
結果セット内のカラムの名前を返す 2837
« db2_field_display_size db2_field_num » PHP Manual IBM DB2 関数 結果セット内のカラムの名前を返す ... db2_field_name (PECL ibm_db2 >= 1.0.0) db2_field_name — 結果セット ... 内のカラムの名前を返す 説明 db2_field_name ( resource $stmt , mixed $column ): string 結果セッ ... セット内にそのカラムが存在しない場合には、 db2_field_name() は false を返します。 参考 db2_field_display_siz ...
https://man.plustar.jp/php/function.db2-field-name.html - [similar]
Save the training structure to a file 2837
« fann_run fann_save » PHP Manual Fann 関数 Save the training structure to a file fann_save_trai ... 説明 fann_save_train ( resource $data , string $file_name ): bool Save the training data to a file, with the ... ニューラルネットワークトレーニングリソース。 file_name The file name of the file where training data is s ...
https://man.plustar.jp/php/function.fann-save-train.html - [similar]
テーブルから行を選択する 2837
« Table::isView Table::update » PHP Manual mysql_xdevapi\Table テーブルから行を選択する Table::s ... 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" ); $row = $table -> select ( 'name' , 'age' )-> ... とえば以下のようになります。 Array ( [0] => Array ( [name] => John [age] => 42 ) [1] => Array ( [name] => Sa ...
https://man.plustar.jp/php/mysql-xdevapi-table.select.html - [similar]