検索

phrase: max: clip:
target: order:
Results of 31 - 40 of about 176 for res (0.007 sec.)
指定したテキストを暗号化する 6175
« gnupg_deletekey gnupg_encryptsign » PHP Manual GnuPG 関数 指定したテキストを暗号化する gnupg_e ... 指定したテキストを暗号化する 説明 gnupg_encrypt ( resource $identifier , string $plaintext ): string 事前 ... ます。 例 例1 手続き型の gnupg_encrypt() の例 <?php $res = gnupg_init (); gnupg_addencryptkey ( $res , "866 ... 4B5B230549F9DC851566DC" ); $enc = gnupg_encrypt ( $res , "just a test" ); echo $enc ; ?> 例2 オブジェクト ... encrypt , 関数 , identifier , string , plaintext , resource , encryptsign ...
https://man.plustar.jp/php/function.gnupg-encrypt.html - [similar]
指定したテキストに署名する 6175
« gnupg_setsignmode gnupg_verify » PHP Manual GnuPG 関数 指定したテキストに署名する gnupg_sign ( ... ign — 指定したテキストに署名する 説明 gnupg_sign ( resource $identifier , string $plaintext ): string 事前 ... します。 例 例1 手続き型の gnupg_sign() の例 <?php $res = gnupg_init (); gnupg_addsignkey ( $res , "866028 ... 9F9DC851566DC" , "test" ); $signed = gnupg_sign ( $res , "just a test" ); echo $signed ; ?> 例2 オブジェク ...
https://man.plustar.jp/php/function.gnupg-sign.html - [similar]
エントリのインデックスを使用して、エントリのコメントを返す 6175
« ZipArchive::getArchiveComment ZipArchive::getCommentName » PHP Manual ZipArchive エントリのイン ... トリのコメントの出力 <?php $zip = new ZipArchive ; $res = $zip -> open ( 'test1.zip' ); if ( $res === TRUE ... mentIndex ( 1 )); } else { echo '失敗、コード:' . $res ; } ?> 関連キーワード: エントリ , コメント , インデ ...
https://man.plustar.jp/php/ziparchive.getcommentindex.html - [similar]
Check whether the instance pointed by OID exists 6119
« cubrid_insert_id cubrid_lob_close » PHP Manual CUBRID 関数 Check whether the instance pointed ... ce pointed by OID exists 説明 cubrid_is_instance ( resource $conn_identifier , string $oid ): int The cub ... NCLUDE_OID ); $oid = cubrid_current_oid ( $req ); $res = cubrid_is_instance ( $conn , $oid ); if ( $res = ... Instance pointed by $oid exists.\n" ; } else if ( $res == 0 ){ echo "Instance pointed by $oid doesn't exi ...
https://man.plustar.jp/php/function.cubrid-is-instance.html - [similar]
指定されたテキストを復号し、検証する 6052
« gnupg_decrypt gnupg_deletekey » PHP Manual GnuPG 関数 指定されたテキストを復号し、検証する gnu ... キストを復号し、検証する 説明 gnupg_decryptverify ( resource $identifier , string $text , string &$plainte ... nupg_decryptverify() の例 <?php $plaintext = "" ; $res = gnupg_init (); gnupg_adddecryptkey ( $res , "866 ... 1566DC" , "test" ); $info = gnupg_decryptverify ( $res , $text , $plaintext ); print_r ( $info ); ?> 例2 ...
https://man.plustar.jp/php/function.gnupg-decryptverify.html - [similar]
Get result of next query when executing multiple SQL statements 5996
« cubrid_move_cursor cubrid_num_cols » PHP Manual CUBRID 関数 Get result of next query when exec ... uting multiple SQL statements cubrid_next_result (PECL CUBRID >= 8.4.0) cubrid_next_result — Get ... result of next query when executing multiple SQL state ... ments 説明 cubrid_next_result ( resource $result ): bool The cubrid_next_resu ... lt() function is used to get results of next query if multiple SQL statements are e ...
https://man.plustar.jp/php/function.cubrid-next-result.html - [similar]
除算を行い、商と余りを得る 5996
« gmp_div_q gmp_div_r » PHP Manual GMP 関数 除算を行い、商と余りを得る gmp_div_qr (PHP 4 >= 4.0. ... 数の割算 <?php $a = gmp_init ( "0x41682179fbf5" ); $res = gmp_div_qr ( $a , "0xDEFE75" ); printf ( "Result ... is: q - %s, r - %s" , gmp_strval ( $res [ 0 ]), gmp_strval ( $res [ 1 ])); ?> 参考 gmp_div ...
https://man.plustar.jp/php/function.gmp-div-qr.html - [similar]
署名済みテキストを検証する 5996
« gnupg_sign wkhtmltox » PHP Manual GnuPG 関数 署名済みテキストを検証する gnupg_verify (PECL gnu ... y — 署名済みテキストを検証する 説明 gnupg_verify ( resource $identifier , string $signed_text , string $s ... き型の gnupg_verify() の例 <?php $plaintext = "" ; $res = gnupg_init (); // clearsigned $info = gnupg_veri ... fy ( $res , $signed_text , false , $plaintext ); print_r ( $ ... o ); // detached signature $info = gnupg_verify ( $res , $signed_text , $signature ); print_r ( $info ); ...
https://man.plustar.jp/php/function.gnupg-verify.html - [similar]
インデックスを使用してエントリの詳細を取得する 5996
« ZipArchive::setPassword ZipArchive::statName » PHP Manual ZipArchive インデックスを使用してエン ... エントリの情報の出力 <?php $zip = new ZipArchive ; $res = $zip -> open ( 'test.zip' ); if ( $res === TRUE ... $zip -> close (); } else { echo '失敗、コード:' . $res ; } ?> 上の例の出力は、 たとえば以下のようになりま ...
https://man.plustar.jp/php/ziparchive.statindex.html - [similar]
名前を使用してエントリの詳細を取得する 5996
« ZipArchive::statIndex ZipArchive::unchangeAll » PHP Manual ZipArchive 名前を使用してエントリの ... エントリの情報の出力 <?php $zip = new ZipArchive ; $res = $zip -> open ( 'test.zip' ); if ( $res === TRUE ... $zip -> close (); } else { echo '失敗、コード:' . $res ; } ?> 上の例の出力は、 たとえば以下のようになりま ...
https://man.plustar.jp/php/ziparchive.statname.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 NEXT