検索

phrase: max: clip:
target: order:
Results of 31 - 40 of about 492 for Password (0.009 sec.)
データベースへの接続を表す PDO インスタンスを生成する 5226
« PDO::commit PDO::errorCode » PHP Manual PDO データベースへの接続を表す PDO インスタンスを生成す ... tring $dsn , ? string $username = null , ? string $password = null , ? array $options = null ) 指定されたデータ ... bname=testdb;host=127.0.0.1' ; $user = 'dbuser' ; $password = 'dbpass' ; $dbh = new PDO ( $dsn , $user , $pass ... 'uri:file:///usr/local/dbconnect' ; $user = '' ; $password = '' ; $dbh = new PDO ( $dsn , $user , $password ) ... タベースに接続する */ $dsn = 'mydb' ; $user = '' ; $password = '' ; $dbh = new PDO ( $dsn , $user , $password ) ...
https://man.plustar.jp/php/pdo.construct.html - [similar]
Zip コンテキストオプション一覧 5138
« コンテキストパラメータ サポートするプロトコル/ラッパー » PHP Manual コンテキストオプションとパ ... オプションは zip ラッパーで使用可能です。 オプション password アーカイブの暗号化に使われたパスワードを指定します ... 変更履歴 バージョン 説明 PHP 7.2.0, PECL zip 1.14.0 password が追加されました。 例 例1 password の基本的な使用例 ... アーカイブを参照する $opts = array( 'zip' => array( 'password' => 'secret' , ), ); // コンテキストを作成して $co ...
https://man.plustar.jp/php/context.zip.html - [similar]
SQL 文中で用いる文字列の特殊文字をエスケープする 5138
« mysql_query mysql_result » PHP Manual MySQL 関数 SQL 文中で用いる文字列の特殊文字をエスケープす ... sql_connect ( 'mysql_host' , 'mysql_user' , 'mysql_password' ) OR die( mysql_error ()); // クエリ $query = spr ... intf ( "SELECT * FROM users WHERE user='%s' AND password='%s'" , mysql_real_escape_string ( $user ), mysql_ ... real_escape_string ( $password )); ?> 例2 mysql_real_escape_string() には接続が必 ... 例3 SQL インジェクション攻撃の例 <?php // $_POST['password'] をチェックしなければ、このような例でユーザーに望 ...
https://man.plustar.jp/php/function.mysql-real-escape-string.html - [similar]
新規に MySQL サーバーへの接続をオープンする 5138
« mysqli::$connect_error mysqli::debug » PHP Manual mysqli 新規に MySQL サーバーへの接続をオープ ... sername = ini_get("mysqli.default_user") , string $password = ini_get("mysqli.default_pw") , string $database ... sername = ini_get("mysqli.default_user") , string $password = ini_get("mysqli.default_pw") , string $database ... sername = ini_get("mysqli.default_user") , string $password = ini_get("mysqli.default_pw") , string $database ... 動的にコールされます。 username MySQL のユーザー名。 password 省略したり null を渡したりした場合、MySQL サーバー ...
https://man.plustar.jp/php/mysqli.construct.html - [similar]
Opens a connection 5058
« Stomp::commit Stomp::__destruct » PHP Manual Stomp Opens a connection Stomp::__construct stomp ... ault_broker_uri") , string $username = ? , string $password = ? , array $headers = ? ) 手続き型: stomp_connect ... ault_broker_uri") , string $username = ? , string $password = ? , array $headers = ? ): resource Opens a conne ... メータ broker The broker URI username The username. password The password. headers 追加のヘッダ (例: receipt) を ...
https://man.plustar.jp/php/stomp.construct.html - [similar]
データベースへの接続を返す 4931
« db2_conn_errormsg db2_cursor_type » PHP Manual IBM DB2 関数 データベースへの接続を返す db2_con ... ct ( string $database , string $username , string $password , array $options = ? ): resource IBM DB2 Universal ... me ;PORT= port ;PROTOCOL=TCPIP;UID= username ;PWD= password ; それぞれのパラメータは以下の内容を表します。 dat ... ポート。 username データベースに接続するユーザー名。 password データベースに接続するパスワード。 username データ ... 合は、 null あるいは空の文字列を渡す必要があります。 password データベースに接続するパスワード。 カタログでない接 ...
https://man.plustar.jp/php/function.db2-connect.html - [similar]
Add a user to a security database 4843
« fbird_wait_event ibase_affected_rows » PHP Manual Firebird/InterBase 関数 Add a user to a secu ... urce $service_handle , string $user_name , string $password , string $first_name = ? , string $middle_name = ? ... user_name The login name of the new database user. password The password of the new user. first_name The first ...
https://man.plustar.jp/php/function.ibase-add-user.html - [similar]
Modify a user to a security database 4843
« ibase_maintain_db ibase_name_result » PHP Manual Firebird/InterBase 関数 Modify a user to a se ... urce $service_handle , string $user_name , string $password , string $first_name = ? , string $middle_name = ? ... ame The login name of the database user to modify. password The user's new password. first_name The user's new ...
https://man.plustar.jp/php/function.ibase-modify-user.html - [similar]
下位互換性のない変更点 4795
« 新しいグローバル定数 PHP 7.4.x で推奨されなくなる機能 » PHP Manual PHP 7.3.x から PHP 7.4.x へ ... 、数値型ではなく、nullable な文字列型になりました。 PASSWORD_DEFAULT は int型の 1 でしたが、 string の '2y' にな ... ました。 (PHP 7.4.0, 7.4.1, 7.4.2 では null でした) PASSWORD_BCRYPT は int型の 1 でしたが、string の '2y' になり ... ました。 PASSWORD_ARGON2I は int型の 2 でしたが、string の 'argon2i' ... になりました。 PASSWORD_ARGON2ID は int型の 3 でしたが、string の 'argon2i ...
https://man.plustar.jp/php/migration74.incompatible.html - [similar]
Sends changes from the local working copy to the repository 4755
« svn_client_version svn_delete » PHP Manual SVN 関数 Sends changes from the local working copy ... s for specifying authentication, so a username and password must be set using svn_auth_set_parameter() パラメー ... ry to a repository, using the username Bob and the password abc123 (hopefully, his password is stronger): <?ph ... ); svn_auth_set_parameter ( SVN_AUTH_PARAM_DEFAULT_PASSWORD , 'abc123' ); var_dump ( svn_commit ( 'Log message ...
https://man.plustar.jp/php/function.svn-commit.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 NEXT