検索

phrase: max: clip:
target: order:
Results of 41 - 50 of about 374 for Test (0.018 sec.)
例外(exceptions) 5468
« PHP 7 でのエラー 例外を拡張する » PHP Manual 言語リファレンス 例外(exceptions) 例外(exceptions ... inally ブロックと return の相互作用 <?php function test () { try { throw new Exception ( 'foo' ); } catch ... 'catch' ; } finally { return 'finally' ; } } echo test (); ?> 上の例の出力は以下となります。 finally 例7 ... ?php class MyException extends Exception { } class Test { public function testing () { try { try { throw n ... var_dump ( $e -> getMessage ()); } } } $foo = new Test ; $foo -> testing (); ?> 上の例の出力は以下となりま ...
https://man.plustar.jp/php/language.exceptions.html - [similar]
CUBRID 関数 (PDO_CUBRID) 5389
« PDO ドライバ PDO_CUBRID DSN » PHP Manual PDO ドライバ CUBRID 関数 (PDO_CUBRID) CUBRID 関数 (PD ... UBRID PDO での LOB の追加 <?php $fp = fopen ( 'lob_test.png' , 'rb' ); $sql_stmt = "INSERT INTO lob_test(n ... ame, content) VALUES('lob_test.png', ?)" ; $stmt = $dbh -> prepare ( $sql_stmt ); ... の取得 <?php $sql_stmt = "SELECT content FROM lob_test WHERE name='lob_test.png'" ; $stmt = $dbh -> prepa ... '' ); $cubrid_pdo -> exec ( "DROP TABLE if exists test_tbl" ); $cubrid_pdo -> exec ( "CREATE TABLE test_t ...
https://man.plustar.jp/php/ref.pdo-cubrid.html - [similar]
指定したテキストに署名する 5345
« gnupg_setsignmode gnupg_verify » PHP Manual GnuPG 関数 指定したテキストに署名する gnupg_sign ( ... es , "8660281B6051D071D94B5B230549F9DC851566DC" , "test" ); $signed = gnupg_sign ( $res , "just a test" ); ... ey ( "8660281B6051D071D94B5B230549F9DC851566DC" , "test" ); $signed = $gpg -> sign ( "just a test" ); echo ...
https://man.plustar.jp/php/function.gnupg-sign.html - [similar]
指定したテキストを暗号化し、署名する 5258
« gnupg_encrypt gnupg_export » PHP Manual GnuPG 関数 指定したテキストを暗号化し、署名する gnupg_ ... es , "8660281B6051D071D94B5B230549F9DC851566DC" , "test" ); $enc = gnupg_encryptsign ( $res , "just a test ... ey ( "8660281B6051D071D94B5B230549F9DC851566DC" , "test" ); $enc = $gpg -> encryptsign ( "just a test" ); ...
https://man.plustar.jp/php/function.gnupg-encryptsign.html - [similar]
名前を使用して、エントリのファイルハンドラ (読み込み専用) を取得する 5258
« ZipArchive::getStatusString ZipArchive::getStreamIndex » PHP Manual ZipArchive 名前を使用して、 ... = '' ; $z = new ZipArchive (); if ( $z -> open ( 'test.zip' )) { $fp = $z -> getStream ( 'test' ); if(! $ ... $fp = fopen ( 'zip://' . dirname ( __FILE__ ) . '/test.zip#test' , 'r' ); if (! $fp ) { exit( "オープンで ... reatefromgif ( 'zip://' . dirname ( __FILE__ ) . '/test_im.zip#pear_item.gif' ); imagepng ( $im , 'a.png' ...
https://man.plustar.jp/php/ziparchive.getstream.html - [similar]
LOB ファイルから、ユーザーが定義したサイズの内容を取得する 5214
« db2_last_insert_id db2_next_result » PHP Manual IBM DB2 関数 LOB ファイルから、ユーザーが定義し ... lob) VALUES (1, ?)" ); $variable = "THIS IS A CLOB TEST. THIS IS A CLOB TEST." ; db2_bind_param ( $stmt , ... lob) VALUES (1, ?)" ); $variable = "THIS IS A BLOB TEST. THIS IS A BLOB TEST." ; db2_bind_param ( $stmt , ... Loop 3: T. THI Loop 4: S IS A Loop 5: CLOB Loop 6: TEST. Loop 0: THIS I Loop 1: S A BL Loop 2: OB TES Loop ... 3: T. THI Loop 4: S IS A Loop 5: BLOB Loop 6: TEST. 参考 db2_bind_param() - PHP 変数を SQL 文のパラメ ...
https://man.plustar.jp/php/function.db2-lob-read.html - [similar]
変換フィルタ 5170
« 文字列フィルタ 圧縮フィルタ » PHP Manual 利用できるフィルタのリスト 変換フィルタ 変換フィルタ ... onvert.base64-encode' ); fwrite ( $fp , "This is a test.\n" ); fclose ( $fp ); /* 出力: VGhpcyBpcyBhIHRlc3 ... FILTER_WRITE , $param ); fwrite ( $fp , "This is a test.\n" ); fclose ( $fp ); /* 出力: VGhpcyBp : cyBhIHR ... HRlc3QuCg==" ); fclose ( $fp ); /* 出力: This is a test. */ ?> convert.quoted-printable-encode と convert. ... ted-printable-encode' ); fwrite ( $fp , "This is a test.\n" ); /* 出力: =This is a test.=0A */ ?> convert. ...
https://man.plustar.jp/php/filters.convert.html - [similar]
Bind variables to a prepared statement as parameters 5170
« CUBRID 関数 cubrid_close_prepare » PHP Manual CUBRID 関数 Bind variables to a prepared stateme ... cute ( $con , "DROP TABLE if exists php_cubrid_lob_test" ); cubrid_execute ( $con , "CREATE TABLE php_cubr ... id_lob_test (doc_content CLOB)" ); $sql = "INSERT INTO php_cub ... rid_lob_test(doc_content) VALUES(?)" ; $req = cubrid_prepare ( ... cute ( $con , "DROP TABLE if exists php_cubrid_lob_test" ); cubrid_execute ( $con , "CREATE TABLE php_cubr ...
https://man.plustar.jp/php/function.cubrid-bind.html - [similar]
Return the ID generated for the last updated AUTO_INCREMENT column 5170
« cubrid_get cubrid_is_instance » PHP Manual CUBRID 関数 Return the ID generated for the last up ... " ); @ cubrid_execute ( $conn , "DROP TABLE cubrid_test" ); cubrid_execute ( $conn , "CREATE TABLE cubrid_ ... ++) { cubrid_execute ( $conn , "INSERT INTO cubrid_test(t) VALUES('cubrid_test')" ); } $id = cubrid_insert ...
https://man.plustar.jp/php/function.cubrid-insert-id.html - [similar]
Move the cursor of a lob object 5170
« cubrid_lob2_read cubrid_lob2_seek » PHP Manual CUBRID 関数 Move the cursor of a lob object cub ... ます。 例 例1 cubrid_lob2_seek64() example <?php // test_lob (id INT, contents CLOB) // Data length of doc_ ... ); cubrid_execute ( $conn , "DROP TABLE if exists test_lob" ); cubrid_execute ( $conn , "CREATE TABLE tes ... )" ); $req = cubrid_prepare ( $conn , "INSERT INTO test_lob VALUES (?, ?)" ); cubrid_bind ( $req , 1 , 1 ) ... ); $req = cubrid_execute ( $conn , "select * from test_lob" ); $row = cubrid_fetch_row ( $req , CUBRID_LO ...
https://man.plustar.jp/php/function.cubrid-lob2-seek64.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 14 NEXT