検索

phrase: max: clip:
target: order:
Results of 61 - 70 of about 710 for user (0.012 sec.)
PHP 関数を XSLT 関数として利用できるようにする 4369
« XSLTProcessor::importStylesheet XSLTProcessor::removeParameter » PHP Manual XSLTProcessor PHP ... からの単純な PHP 関数コール <?php $xml = <<<EOB <allusers> <user> <uid>bob</uid> </user> <user> <uid>joe</u ... id> </user> </allusers> EOB; $xsl = <<<EOB <?xml version="1.0 ... ing="utf-8" indent="yes"/> <xsl:template match="allusers"> <html><body> <h2>Users</h2> <table> <xsl:for-ea ... ch select="user"> <tr><td> <xsl:value-of select="php:function('ucf ...
https://man.plustar.jp/php/xsltprocessor.registerphpfunctions.html - [similar]
Open a persistent connection to CUBRID server 4334
« cubrid_num_rows cubrid_pconnect » PHP Manual CUBRID 関数 Open a persistent connection to CUBRI ... rid_pconnect_with_url ( string $conn_url , string $userid = ? , string $passwd = ? ): resource Establishes ... already open with the same host, port, dbname and userid. If one is found, an identifier for it will be r ... persistent'. <url> ::= CUBRID:<host>:<db_name>:<db_user>:<db_password>:[?<properties>] <properties> ::= <p ... aster database db_name : A name of the database db_user : A name of the database user db_password : A data ...
https://man.plustar.jp/php/function.cubrid-pconnect-with-url.html - [similar]
Oracle ユーザーのパスワードを変更する 4334
« oci_parse oci_pconnect » PHP Manual OCI8 関数 Oracle ユーザーのパスワードを変更する oci_passwo ... i_password_change ( resource $connection , string $username , string $old_password , string $new_password ... _password_change ( string $database_name , string $username , string $old_password , string $new_password ... ): resource ユーザー username のパスワードを変更します。 oci_password_change ... () あるいは oci_pconnect() が返す Oracle 接続 ID。 username Oracle のユーザー名。 old_password 旧パスワード ...
https://man.plustar.jp/php/function.oci-password-change.html - [similar]
ファイルシステムのセキュリティ 4306
« セッションのセキュリティ Null バイト関連の問題 » PHP Manual セキュリティ ファイルシステムのセキ ... ユーザーのホームディレクトリからファイルを削除する $username = $_POST [ 'user_submitted_name' ]; $userfile ... = $_POST [ 'user_submitted_filename' ]; $homedir = "/home/ $usernam ... e " ; unlink ( " $homedir / $userfile " ); echo "ファイルは削除されました!" ; ?> use ... ame はユーザーフォームから投稿可能であるため、別の username および filename を投稿して 削除すべきではない削 ...
https://man.plustar.jp/php/security.filesystem.html - [similar]
クライアントの一覧を取得する 4271
« Session::getServerVersion Session::quoteName » PHP Manual mysql_xdevapi\Session クライアントの ... 含んだ配列を返します。 配列の要素には、"client_id", "user", "host", および "sql_session" が含まれています。 ... $session = mysql_xdevapi \ getSession ( "mysqlx://user:password@localhost" ); $ids = $session -> listClie ... ay(1) { [0]=> array(4) { ["client_id"]=> int(61) ["user"]=> string(4) "root" ["host"]=> string(9) "localho ... Clients , xdevapi , array , int , session , host , user ...
https://man.plustar.jp/php/mysql-xdevapi-session.listclients.html - [similar]
PHP による HTTP 認証 4215
« 機能 クッキー(Cookies) » PHP Manual 機能 PHP による HTTP 認証 PHP による HTTP 認証 header() 関 ... 含むその URL は、次回以降、 定義済みの変数 PHP_AUTH_USER と、 PHP_AUTH_PW と、 PHP_AUTH_TYPE にそれぞれユー ... TP 認証の例 <?php if (!isset( $_SERVER [ 'PHP_AUTH_USER' ])) { header ( "WWW-Authenticate: Basic realm=\"M ... lse { echo "<p>こんにちは、 { $_SERVER [ 'PHP_AUTH_USER' ]} さん。</p>" ; echo "<p>あなたは、 { $_SERVER [ ... んでください。 <?php $realm = 'Restricted area' ; //user => password $users = array( 'admin' => 'mypass' , ...
https://man.plustar.jp/php/features.http-auth.html - [similar]
ユーザーレベルのエラー/警告/通知メッセージを生成する 4215
« set_exception_handler user_error » PHP Manual エラー処理関数 ユーザーレベルのエラー/警告/通知メ ... ger_error ( string $message , int $error_level = E_USER_NOTICE ): bool ユーザーエラーを発生させるために使い ... or_level このエラーに割り当てられたエラー型です。E_USER 関連の定数のみが指定可能で、デフォルトは E_USER_NO ... { trigger_error ( "ゼロで割ることはできません" , E_USER_ERROR ); } ?> 注意 警告 message の HTML エンティテ ...
https://man.plustar.jp/php/function.trigger-error.html - [similar]
実行時設定 4180
« インストール手順 リソース型 » PHP Manual インストール/設定 実行時設定 実行時設定 php.ini の設定 ... オプション 名前 デフォルト 変更可能 変更履歴 ignore_user_abort "0" PHP_INI_ALL highlight.string "#DD0000" P ... ディレクティブに関する 簡単な説明を示します。 ignore_user_abort bool デフォルトは false 。 true に変更すると ... 接続を破棄した後もスクリプトは終了しません。 ignore_user_abort() も参照ください。 highlight.bg string highl ... ht , 実行 , string , ALL , ignore , 参照 , abort , user , browscap ...
https://man.plustar.jp/php/misc.configuration.html - [similar]
どの API を使うか 4180
« 用語説明 どのライブラリを選ぶか » PHP Manual MySQL 用 PHP ドライバの概要 どの API を使うか どの ... ple.com" 上で稼働する MySQL サーバーに ユーザー名 "user"、パスワード "password" で接続するものです。 そして ... // mysqli $mysqli = new mysqli ( "example.com" , "user" , "password" , "database" ); $result = $mysqli -> ... query ( "SELECT 'Hello, dear MySQL user!' AS _message FROM DUAL" ); $row = $result -> fetc ... PDO ( 'mysql:host=example.com;dbname=database' , 'user' , 'password' ); $statement = $pdo -> query ( "SEL ...
https://man.plustar.jp/php/mysqlinfo.api.choosing.html - [similar]
The MongoDB\BSON\Binary class 4152
« MongoDB\BSON\toRelaxedExtendedJSON MongoDB\BSON\Binary::__construct » PHP Manual MongoDB\BSON ... predefined or reserved. Subtypes from 128-255 are user-defined. クラス概要 final class MongoDB\BSON\Binar ... D = 6 ; const int TYPE_COLUMN = 7 ; const int TYPE_USER_DEFINED = 128 ; /* メソッド */ final public __cons ... time-series collections. MongoDB\BSON\Binary::TYPE_USER_DEFINED User-defined type. While types between 0 a ... defined or reserved, types between 128 and 255 are user-defined and may be used for anything. 変更履歴 バー ...
https://man.plustar.jp/php/class.mongodb-bson-binary.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 NEXT