検索

phrase: max: clip:
target: order:
Results of 71 - 80 of about 710 for user (0.030 sec.)
CURL コンテキストオプションの一覧 4152
« SSL コンテキストオプション Phar コンテキストオプション » PHP Manual コンテキストオプションとパ ... スト時に送信する追加のヘッダ。このオプションの値は ( User-agent: や Host: 、 Authentication: といった) 他の値 ... を上書きします。 user_agent string User-Agent: ヘッダで送信する値。 デフ ... ォルトでは、 php.ini の user_agent の設定内容を使用します。 content string ヘッ ... プション , string , 送信 , agent , ヘッダ , データ , user , verify ...
https://man.plustar.jp/php/context.curl.html - [similar]
Memory management 4152
« メモ MySQL Native Driver プラグインAPI » PHP Manual Mysqlnd Memory management Memory managemen ... and how results read from MySQL are linked to PHP user variables. The following notes are intended as an ... introduction and summary to users interested at understanding the MySQL Native Driv ... ot copied and kept in memory only once. Should the user modify the contents of a variable holding the data ... nts of the buffer must not be modified because the user may decide to read the result set a second time. T ...
https://man.plustar.jp/php/mysqlnd.memory.html - [similar]
データソースに接続する 4124
« odbc_commit odbc_cursor » PHP Manual ODBC 関数 データソースに接続する odbc_connect (PHP 4, PHP ... に接続する 説明 odbc_connect ( string $dsn , string $user , string $password , int $cursor_option = SQL_CUR_ ... は、DSNではない接続文字列を使用することもできます。 user ユーザー名。 password パスワード。 cursor_option こ ... t 10.0};Server= $server ;Database= $database ;" , $user , $password ); // Microsoft Access $connection = o ... soft Access Driver (*.mdb)};Dbq= $mdbFilename " , $user , $password ); // Microsoft Excel $excelFile = rea ...
https://man.plustar.jp/php/function.odbc-connect.html - [similar]
現在のセッションモジュールを取得または設定する 4124
« session_id session_name » PHP Manual セッション関数 現在のセッションモジュールを取得または設定 ... モジュールを代わりに使用します。 このパラメーターに "user" を渡すことは禁止されています。 ユーザー定義のセッ ... は、nullable になりました。 7.2.0 モジュール名に "user" を設定することは、 明示的に禁止されるようになりま ... した。 これより前のバージョンでは、 "user" を設定しても静かに無視されていました。 関連キーワ ... : セッション , モジュール , 設定 , module , 取得 , user , 関数 , バージョン , 禁止 , handler ...
https://man.plustar.jp/php/function.session-module-name.html - [similar]
データベースへの接続を表す PDO インスタンスを生成する 4124
« PDO::commit PDO::errorCode » PHP Manual PDO データベースへの接続を表す PDO インスタンスを生成す ... public PDO::__construct ( string $dsn , ? string $username = null , ? string $password = null , ? array $ ... conf ではなく、 php.ini で定義する必要があります。 username DSN 文字列のユーザー名。このパラメータは、いく ... */ $dsn = 'mysql:dbname=testdb;host=127.0.0.1' ; $user = 'dbuser' ; $password = 'dbpass' ; $dbh = new PDO ... ( $dsn , $user , $password ); ?> 例2 URI 呼び出しにより PDO インス ...
https://man.plustar.jp/php/pdo.construct.html - [similar]
データベースへの持続的接続を返す 4089
« db2_pclose db2_prepare » PHP Manual IBM DB2 関数 データベースへの持続的接続を返す db2_pconnect ... 返す 説明 db2_pconnect ( string $database , string $username , string $password , array $options = ? ): res ... 2 クライアントカタログ内のデータベースエイリアス。 username データベースに接続するユーザー名。 password デ ... ハンドルリソースを返します。 パラメータ database 、 username および password に完全に一致する接続が 既に存在 ... ースが再利用されます。 <?php $database = 'SAMPLE' ; $user = 'db2inst1' ; $password = 'ibmdb2' ; $pconn = db2 ...
https://man.plustar.jp/php/function.db2-pconnect.html - [similar]
シンボリックリンクの所有者を変更する 4089
« lchgrp link » PHP Manual ファイルシステム 関数 シンボリックリンクの所有者を変更する lchown (PH ... する 説明 lchown ( string $filename , string | int $user ): bool シンボリックリンク filename の所有者を use ... ーのみです。 パラメータ filename ファイルへのパス。 user ユーザー名あるいはユーザー番号。 戻り値 成功した場 ... のモードを変更する 関連キーワード: 変更 , filename , user , 注意 , lchown , 関数 , string , グループ , lchgr ...
https://man.plustar.jp/php/function.lchown.html - [similar]
MySQL サーバーへの接続をオープンする 4089
« mysql_close mysql_create_db » PHP Manual MySQL 関数 MySQL サーバーへの接続をオープンする mysql ... $server = ini_get("mysql.default_host") , string $username = ini_get("mysql.default_user") , string $pass ... タは無視され、常に 'localhost:3306' が用いられます。 username ユーザー名。デフォルト値は mysql.default_user ... <?php $link = mysql_connect ( 'localhost' , 'mysql_user' , 'mysql_password' ); if (! $link ) { die( '接続で ... link = mysql_connect ( 'example.com:3307' , 'mysql_user' , 'mysql_password' ); if (! $link ) { die( '接続で ...
https://man.plustar.jp/php/function.mysql-connect.html - [similar]
Oracle プレースホルダに PHP 変数をバインドする 4089
« oci_bind_array_by_name oci_cancel » PHP Manual OCI8 関数 Oracle プレースホルダに PHP 変数をバイ ... rigger_error ( htmlentities ( $m [ 'message' ]), E_USER_ERROR ); } $stid = oci_parse ( $conn , "INSERT INT ... rigger_error ( htmlentities ( $m [ 'message' ]), E_USER_ERROR ); } $a = array( 1 , 3 , 5 , 7 , 11 ); // 挿 ... rigger_error ( htmlentities ( $m [ 'message' ]), E_USER_ERROR ); } $sql = 'SELECT * FROM departments WHERE ... rigger_error ( htmlentities ( $m [ 'message' ]), E_USER_ERROR ); } $sql = 'SELECT last_name FROM employees ...
https://man.plustar.jp/php/function.oci-bind-by-name.html - [similar]
php.ini ディレクティブのリスト 4089
« php.ini ディレクティブ php.ini のセクション一覧 » PHP Manual php.ini ディレクティブ php.ini デ ... _INI_ALL expect.timeout "10" PHP_INI_ALL expect.loguser "1" PHP_INI_ALL expect.logfile "" PHP_INI_ALL expe ... ibase.default_db NULL PHP_INI_SYSTEM ibase.default_user NULL PHP_INI_ALL ibase.default_password NULL PHP_I ... M ibm_db2 1.0.2 以降で利用可能。 ibm_db2.i5_ignore_userid "0" PHP_INI_SYSTEM ibm_db2 1.8.0 以降で利用可能。 ... _ALL ignore_repeated_source "0" PHP_INI_ALL ignore_user_abort "0" PHP_INI_ALL implicit_flush "0" PHP_INI_A ...
https://man.plustar.jp/php/ini.list.html - [similar]