検索

phrase: max: clip:
target: order:
Results of 131 - 140 of about 710 for user (0.030 sec.)
mysql サーバーとの接続をオープンする 3690
« mysqli::query mysqli::real_escape_string » PHP Manual mysqli mysql サーバーとの接続をオープンす ... mysqli::real_connect ( string $host = ? , string $username = ? , string $passwd = ? , string $dbname = ? ... onnect ( mysqli $link , string $host = ? , string $username = ? , string $passwd = ? , string $dbname = ? ... CP/IP プロトコルよりもパイプを優先して使用します。 username MySQL ユーザー名。 passwd null を指定した場合は ... if (! $mysqli -> real_connect ( 'localhost' , 'my_user' , 'my_password' , 'my_db' )) { die( 'Connect Erro ...
https://man.plustar.jp/php/mysqli.real-connect.html - [similar]
ストリーム 3662
« SplSubject::notify はじめに » PHP Manual その他の基本モジュール ストリーム ストリーム はじめに ... 例 ストリームラッパーとして登録するクラスの例 php_user_filter — php_user_filter クラス php_user_filter::f ... ilter — フィルタを適用するときにコールされる php_user_filter::onClose — フィルタを閉じるときにコールされ ... る php_user_filter::onCreate — フィルタを作成するときにコールさ ...
https://man.plustar.jp/php/book.stream.html - [similar]
The ZMQDevice class 3662
« ZMQPoll::remove ZMQDevice::__construct » PHP Manual 0MQ messaging The ZMQDevice class The ZMQD ... llback ( callable $cb_func , int $timeout , mixed $user_data = ? ): ZMQDevice public setIdleTimeout ( int ... llback ( callable $cb_func , int $timeout , mixed $user_data = ? ): ZMQDevice public setTimerTimeout ( int ...
https://man.plustar.jp/php/class.zmqdevice.html - [similar]
PostgreSQL 接続をオープンする 3662
« pg_connect_poll pg_connection_busy » PHP Manual PostgreSQL 関数 PostgreSQL 接続をオープンする ... です。 host , hostaddr , port , dbname (デフォルトは user の値), user , password , connect_timeout , options ... 3 = pg_connect ( "host=sheep port=5432 dbname=mary user=lamb password=foo" ); // ユーザー名とパスワードを指 ... 続 $conn_string = "host=sheep port=5432 dbname=test user=lamb password=bar" ; $dbconn4 = pg_connect ( $conn ...
https://man.plustar.jp/php/function.pg-connect.html - [similar]
プロパティ 3662
« クラスの基礎 オブジェクト定数 » PHP Manual クラスとオブジェクト プロパティ プロパティ クラスの ... 型を除きます。 例2 型付きプロパティの例 <?php class User { public int $id ; public ? string $name ; public ... { $this -> id = $id ; $this -> name = $name ; } } $user = new User ( 1234 , null ); var_dump ( $user -> id ... ); var_dump ( $user -> name ); ?> 上の例の出力は以下となります。 int(1 ...
https://man.plustar.jp/php/language.oop5.properties.html - [similar]
mysqli のエラー報告モードを設定する 3662
« mysqli_driver::embedded_server_start mysqli_warning » PHP Manual mysqli_driver mysqli のエラー ... れます。*/ $mysqli = new mysqli ( "localhost" , "my_user" , "my_password" , "my_db" ); /* このクエリは、エラ ... ます。*/ $link = mysqli_connect ( "localhost" , "my_user" , "my_password" , "my_db" ); /* このクエリは、エラ ... れます。*/ $mysqli = new mysqli ( "localhost" , "my_user" , "my_password" , "my_db" ); $mysqli = new mysqli ... ( "localhost" , "my_user" , "my_password" , "my_db" ); /* このクエリは、エラ ...
https://man.plustar.jp/php/mysqli-driver.report-mode.html - [similar]
例外の深刻度を取得する 3635
« ErrorException::__construct Error » PHP Manual ErrorException 例外の深刻度を取得する ErrorExce ... w new ErrorException ( "Exception message" , 0 , E_USER_ERROR ); } catch( ErrorException $e ) { echo "This ... Severity (); var_dump ( $e -> getSeverity () === E_USER_ERROR ); } ?> 上の例の出力は、 たとえば以下のように ...
https://man.plustar.jp/php/errorexception.getseverity.html - [similar]
static メソッドをコールし、引数を配列で渡す 3635
« create_function forward_static_call » PHP Manual 関数処理 関数 static メソッドをコールし、引数 ... 転送先のメソッドへのすべての引数は値渡しで、 call_user_func_array() と同様に配列で指定します。 パラメータ ... d_static_call() - static メソッドをコールする call_user_func() - 最初の引数で指定したコールバック関数をコー ... ルする call_user_func_array() - パラメータの配列を指定してコールバッ ...
https://man.plustar.jp/php/function.forward-static-call-array.html - [similar]
結果において指定したフィールド名を取得する 3635
« mysql_field_len mysql_field_seek » PHP Manual MySQL 関数 結果において指定したフィールド名を取得 ... を返します。 例 例1 mysql_field_name() の例 <?php /* users テーブルには以下の 3 つのフィールドがある * user_ ... id * username * password. */ $link = mysql_connect ( 'localh ... ost' , 'mysql_user' , 'mysql_password' ); if (! $link ) { die( 'Could ... l_error ()); } $res = mysql_query ( 'select * from users' , $link ); echo mysql_field_name ( $res , 0 ) . ...
https://man.plustar.jp/php/function.mysql-field-name.html - [similar]
空の新規 LOB あるいは FILE ディスクリプタを初期化する 3635
« oci_new_cursor oci_num_fields » PHP Manual OCI8 関数 空の新規 LOB あるいは FILE ディスクリプタ ... ームからコールされるよう設計されています。 * また、$user, $passwor, $table, $where, $commitsizeがフォームか ... 意して使用してください。) */ $conn = oci_connect ( $user , $password ); $stmt = oci_parse ( $conn , "select ... ードに関する節を参照ください $conn = oci_connect ( $user , $password ); $lob = oci_new_descriptor ( $conn , ... (38) IN * DATA CLOB IN * */ $conn = oci_connect ( $user , $password ); $stmt = oci_parse ( $conn , "begin ...
https://man.plustar.jp/php/function.oci-new-descriptor.html - [similar]