検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 86 for fwrite (0.005 sec.)
バイナリセーフなファイル書き込み処理 14109
« ftruncate glob » PHP Manual ファイルシステム 関数 バイナリセーフなファイル書き込み処理 fwrite ... (PHP 4, PHP 5, PHP 7, PHP 8) fwrite — バイナリセーフなファイル書き込み処理 説明 fwrite ... string $data , ? int $length = null ): int | false fwrite() は data の内容を stream が指しているファイル・ス ... か早い方の 事象により書き込みは中止されます。 戻り値 fwrite() は、 書き込んだバイト数、またはエラー時に false ... 0 length は、nullable になりました。 例 例1 簡単な fwrite() の例 <?php $filename = 'test.txt' ; $somecontent ...
https://man.plustar.jp/php/function.fwrite.html - [similar]
ファイルに書き込む 11508
« SplFileObject::ftruncate SplFileObject::getChildren » PHP Manual SplFileObject ファイルに書き込 ... む SplFileObject::fwrite (PHP 5 >= 5.1.0, PHP 7, PHP 8) SplFileObject::fwri ... te — ファイルに書き込む 説明 public SplFileObject::fwrite ( string $data , int $length = 0 ): int | false Wr ... lse を返すようになりました。 例 例1 SplFileObject::fwrite() の例 <?php $file = new SplFileObject ( "fwrite.t ... xt" , "w" ); $written = $file -> fwrite ( "12345" ); echo " $written バイトをファイルに書き ...
https://man.plustar.jp/php/splfileobject.fwrite.html - [similar]
fwrite のエイリアス 11239
« fputcsv fread » PHP Manual ファイルシステム 関数 fwrite のエイリアス fputs (PHP 4, PHP 5, PHP ... 7, PHP 8) fputs — fwrite() のエイリアス 説明 この関数は次の関数のエイリアス ... です。 fwrite() . 関連キーワード: fwrite , 関数 , fputs , fputcs ...
https://man.plustar.jp/php/function.fputs.html - [similar]
9689
« ストリームのエラー ストリームラッパーとして登録するクラスの例 » PHP Manual ストリーム 例 例 目 ... ( "Fooの値" ) . "&bar=" . urlencode ( "Barの値" ); fwrite ( $sock , "POST /form_action.php HTTP/1.0\r\n" ); ... fwrite ( $sock , "Host: secure.example.com\r\n" ); fwrite ( $sock , "Content-type: application/x-www-form-ur ... lencoded\r\n" ); fwrite ( $sock , "Content-length: " . strlen ( $data ) . ... "\r\n" ); fwrite ( $sock , "Accept: */*\r\n" ); fwrite ( $sock , "\ ...
https://man.plustar.jp/php/stream.examples.html - [similar]
Expect の使用例 9487
« 例 Expect 関数 » PHP Manual 例 Expect の使用例 Expect の使用例 例1 Expect の使用例 この例ではリ ... ct_expectl ( $stream , $cases )) { case PASSWORD : fwrite ( $stream , "password\n" ); break; default: die ( ... // シェルにたどり着きました! ))) { case PASSWORD : fwrite ( $stream , "secret\n" ); break; case YESNO : fwri ... te ( $stream , "yes\n" ); break; case SHELL : fwrite ( $stream , "uname -a\n" ); while ( true ) { switc ... プデートの実行 if ( strstr ( $uname , "x86_64" )) { fwrite ( $stream , "rpm -Uhv http://mirrorsite/somepath/s ...
https://man.plustar.jp/php/expect.examples-usage.html - [similar]
暗号化フィルタ 9028
« 圧縮フィルタ サポートされるソケットトランスポートのリスト » PHP Manual 利用できるフィルタのリス ... OM ); $fp = fopen ( 'encrypted-file.enc' , 'wb' ); fwrite ( $fp , $iv ); $opts = array( 'mode' => 'cbc' , 'i ... 'mcrypt.blowfish' , STREAM_FILTER_WRITE , $opts ); fwrite ( $fp , 'message to encrypt' ); fclose ( $fp ); // ... , "wb+" ); if (!empty( $fin ) && !empty( $fc )) { fwrite ( $fc , str_repeat ( "_" , 32 ) ); //placeholder, ... SHA256 HMAC will go here later fwrite ( $fc , $hmac_salt = mcrypt_create_iv ( $iv_size , ...
https://man.plustar.jp/php/filters.encryption.html - [similar]
文字列フィルタ 8153
« 利用できるフィルタのリスト 変換フィルタ » PHP Manual 利用できるフィルタのリスト 文字列フィルタ ... ); stream_filter_append ( $fp , 'string.rot13' ); fwrite ( $fp , "This is a test.\n" ); /* 出力: Guvf vf n ... ; stream_filter_append ( $fp , 'string.toupper' ); fwrite ( $fp , "This is a test.\n" ); /* 出力: THIS IS A ... ; stream_filter_append ( $fp , 'string.tolower' ); fwrite ( $fp , "This is a test.\n" ); /* 出力: this is a ... strip_tags' , STREAM_FILTER_WRITE , "<b><i><u>" ); fwrite ( $fp , "<b>bolded text</b> enlarged to a <h1>leve ...
https://man.plustar.jp/php/filters.string.html - [similar]
ユーザー定義のストリームフィルタを登録する 8085
« stream_filter_prepend stream_filter_remove » PHP Manual ストリーム 関数 ユーザー定義のストリー ... する */ stream_filter_append ( $fp , "strtoupper" ); fwrite ( $fp , "Line1\n" ); fwrite ( $fp , "Word - 2\n" ) ... ; fwrite ( $fp , "Easy As 123\n" ); fclose ( $fp ); /* ファ ... 能 */ stream_filter_append ( $fp , "str.toupper" ); fwrite ( $fp , "Line1\n" ); fwrite ( $fp , "Word - 2\n" ) ... ; fwrite ( $fp , "Easy As 123\n" ); fclose ( $fp ); /* ファ ...
https://man.plustar.jp/php/function.stream-filter-register.html - [similar]
変換フィルタ 7816
« 文字列フィルタ 圧縮フィルタ » PHP Manual 利用できるフィルタのリスト 変換フィルタ 変換フィルタ ... m_filter_append ( $fp , 'convert.base64-encode' ); fwrite ( $fp , "This is a test.\n" ); fclose ( $fp ); /* ... t.base64-encode' , STREAM_FILTER_WRITE , $param ); fwrite ( $fp , "This is a test.\n" ); fclose ( $fp ); /* ... m_filter_append ( $fp , 'convert.base64-decode' ); fwrite ( $fp , "VGhpcyBpcyBhIHRlc3QuCg==" ); fclose ( $fp ... ppend ( $fp , 'convert.quoted-printable-encode' ); fwrite ( $fp , "This is a test.\n" ); /* 出力: =This is a ...
https://man.plustar.jp/php/filters.convert.html - [similar]
ファイルを指定した長さに丸める 7748
« SplFileObject::ftell SplFileObject::fwrite » PHP Manual SplFileObject ファイルを指定した長さに ... plFileObject ( "/tmp/ftruncate" , "w+" ); $file -> fwrite ( "Hello World!" ); // 5 バイトに丸める $file -> f ... ize , ftruncate , サイズ , バイト , int , public , fwrite ...
https://man.plustar.jp/php/splfileobject.ftruncate.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 NEXT