検索

phrase: max: clip:
target: order:
Results of 541 - 550 of about 661 for Open (1.234 sec.)
指定した関数が定義されている場合に true を返す 3020
« func_num_args get_defined_functions » PHP Manual 関数処理 関数 指定した関数が定義されている場合 ... n_exists() の例 <?php if ( function_exists ( 'imap_open' )) { echo "IMAP 関数が利用可能です。<br />\n" ; } ...
https://man.plustar.jp/php/function.function-exists.html - [similar]
指定されたメッセージをメールボックスにコピーする 3020
« imap_mail_compose imap_mail_move » PHP Manual IMAP 関数 指定されたメッセージをメールボックスに ... 囲を示します。 mailbox メールボックス名。詳細は imap_open() を参照ください。 警告 信頼できないデータをこのパ ...
https://man.plustar.jp/php/function.imap-mail-copy.html - [similar]
メッセージにフラグをセットする 3020
« imap_setacl imap_sort » PHP Manual IMAP 関数 メッセージにフラグをセットする imap_setflag_full ... 例 例1 imap_setflag_full() の例 <?php $mbox = imap_open ( "{imap.example.org:143}" , "username" , "passwor ...
https://man.plustar.jp/php/function.imap-setflag-full.html - [similar]
スレッド化したメッセージのツリーを返す 3020
« imap_subscribe imap_timeout » PHP Manual IMAP 関数 スレッド化したメッセージのツリーを返す imap ... ループのスレッドを HTML で出力します。 $nntp = imap_open ( '{news.example.com:119/nntp}some.newsgroup' , '' ...
https://man.plustar.jp/php/function.imap-thread.html - [similar]
オープンされたアルゴリズムでサポートされるキー長を配列にして返す 3020
« mcrypt_enc_get_modes_name mcrypt_enc_is_block_algorithm_mode » PHP Manual Mcrypt 関数 オープン ... pported_key_sizes() の例 <?php $td = mcrypt_module_open ( 'rijndael-256' , '' , 'ecb' , '' ); var_dump ( m ...
https://man.plustar.jp/php/function.mcrypt-enc-get-supported-key-sizes.html - [similar]
指定した暗号のブロックサイズを得る 3020
« mcrypt_generic mcrypt_get_cipher_name » PHP Manual Mcrypt 関数 指定した暗号のブロックサイズを得 ... より有用です。というのもこちらの関数は mcrypt_module_open() が返すリソースを使用するからです。 パラメータ ci ... nc_get_block_size() - Returns the blocksize of the opened algorithm mcrypt_encrypt() - 指定したパラメータで ...
https://man.plustar.jp/php/function.mcrypt-get-block-size.html - [similar]
新規カーソル (ステートメントハンドル) を割り当て、それを返す 3020
« oci_new_connect oci_new_descriptor » PHP Manual OCI8 関数 新規カーソル (ステートメントハンドル ... dure myproc(myrc out sys_refcursor) as // begin // open myrc for select first_name from employees; // end; ...
https://man.plustar.jp/php/function.oci-new-cursor.html - [similar]
PKCS5 v2 の PBKDF2 文字列を生成する 3020
« openssl_open openssl_pkcs12_export_to_file » PHP Manual OpenSSL 関数 PKCS5 v2 の PBKDF2 文字列 ... を生成する openssl_pbkdf2 (PHP 5 >= 5.5.0, PHP 7, PHP 8) openssl_p ... bkdf2 — PKCS5 v2 の PBKDF2 文字列を生成する 説明 openssl_pbkdf2 ( string $password , string $salt , int ... s , string $digest_algo = "sha1" ): string | false openssl_pbkdf2() 関数は、PBKDF2 (Password-Based Key Der ... はダイジェストアルゴリズム。 アルゴリズムの一覧は、 openssl_get_md_methods() で得られます。 デフォルトは SH ...
https://man.plustar.jp/php/function.openssl-pbkdf2.html - [similar]
テキストの出力位置を設定する 3020
« ps_set_parameter ps_set_value » PHP Manual PS 関数 テキストの出力位置を設定する ps_set_text_po ... にテキストを配置する <?php $ps = ps_new (); if (! ps_open_file ( $ps , "text.ps" )) { print "PostScript ファ ...
https://man.plustar.jp/php/function.ps-set-text-pos.html - [similar]
ジェネレータと Iterator オブジェクトとの比較 3020
« ジェネレータの構文 アトリビュート » PHP Manual ジェネレータ ジェネレータと Iterator オブジェク ... LinesFromFile ( $fileName ) { if (! $fileHandle = fopen ( $fileName , 'r' )) { return; } while ( false !== ... truct ( $fileName ) { if (! $this -> fileHandle = fopen ( $fileName , 'r' )) { throw new RuntimeException ... ( 'Couldn\'t open file "' . $fileName . '"' ); } } public function r ...
https://man.plustar.jp/php/language.generators.comparison.html - [similar]