Results of 1 - 10 of about 174 for contents (0.001 sec.)
- 残りのストリームを文字列に読み込む 9837
- « stream_filter_remove stream_get_filters » PHP Manual ストリーム 関数 残りのストリームを文字列に
...
読み込む stream_get_contents (PHP 5, PHP 7, PHP 8) stream_get_contents — 残りの ...
ストリームを文字列に読み込む 説明 stream_get_contents ( resource $stream , ? int $length = null , int $o ...
ffset = -1 ): string | false file_get_contents() と似ていますが、 stream_get_contents() は既にオー ...
ngth は、nullable になりました。 例 例1 stream_get_contents() の例 <?php if ( $stream = fopen ( 'http://www.ex ...
-
https://man.plustar.jp/php/function.stream-get-contents.html
- [similar]
- ファイルの内容を全て文字列に読み込む 9769
- « file_exists file_put_contents » PHP Manual ファイルシステム 関数 ファイルの内容を全て文字列に読
...
み込む file_get_contents (PHP 4 >= 4.3.0, PHP 5, PHP 7, PHP 8) file_get_con ...
ファイルの内容を全て文字列に読み込む 説明 file_get_contents ( string $filename , bool $use_include_path = fals ...
み込むという点が異なります。 失敗した場合、 file_get_contents() は false を返します。 file_get_contents() はファ ...
合に E_WARNING レベルのエラーが発生します。 file_get_contents() 関数がディレクトリに対して呼び出されると、 Windo ...
-
https://man.plustar.jp/php/function.file-get-contents.html
- [similar]
- 出力用バッファの内容を返す 9702
- « ob_get_clean ob_get_flush » PHP Manual 出力制御 関数 出力用バッファの内容を返す ob_get_contents
...
s (PHP 4, PHP 5, PHP 7, PHP 8) ob_get_contents — 出力用バッファの内容を返す 説明 ob_get_contents ...
ない場合には false を返します。 例 例1 単純な ob_get_contents() の例 <?php ob_start (); echo "Hello " ; $out1 = ...
ob_get_contents (); echo "World" ; $out2 = ob_get_contents (); ob_ ...
長さを返す 関連キーワード: 出力 , バッファ , 内容 , contents , string , 関数 , パラメータ , バッファリング , fl ...
-
https://man.plustar.jp/php/function.ob-get-contents.html
- [similar]
- Drains the entire contents of the input buffer and places them into buf 9366
- « EventBufferEvent::read EventBufferEvent::setCallbacks » PHP Manual EventBufferEvent Drains the
...
entire contents of the input buffer and places them into buf Event ...
) EventBufferEvent::readBuffer — Drains the entire contents of the input buffer and places them into buf 説明 ...
uffer ( EventBuffer $buf ): bool Drains the entire contents of the input buffer and places them into buf . パラ ...
ーワード: EventBufferEvent , buffer , buf , Drains , contents , input , places , into , readBuffer , entire ...
-
https://man.plustar.jp/php/eventbufferevent.readbuffer.html
- [similar]
- Write contents of the buffer to a file or socket 9232
- « EventBuffer::unlock EventBufferEvent » PHP Manual EventBuffer Write contents of the buffer to
...
e (PECL event >= 1.6.0) EventBuffer::write — Write contents of the buffer to a file or socket 説明 public Even ...
:write ( mixed $fd , int $howmuch = ? ): int Write contents of the buffer to a file descriptor. The buffer wil ...
ain the bytes read 関連キーワード: buffer , file , contents , EventBuffer , the , or , of , bytes , descriptor ...
-
https://man.plustar.jp/php/eventbuffer.write.html
- [similar]
- Adds contents of the entire buffer to a buffer event's output buffer 9232
- « EventBufferEvent::write About buffer event callbacks » PHP Manual EventBufferEvent Adds contents
...
= 1.2.6-beta) EventBufferEvent::writeBuffer — Adds contents of the entire buffer to a buffer event's output bu ...
Event::writeBuffer ( EventBuffer $buf ): bool Adds contents of the entire buffer to a buffer event's output bu ...
t , event , output , Adds , writeBuffer , entire , contents , EventBuffer , buf ...
-
https://man.plustar.jp/php/eventbufferevent.writebuffer.html
- [similar]
- データをファイルに書き込む 8761
- « file_get_contents file » PHP Manual ファイルシステム 関数 データをファイルに書き込む file_put_
...
contents (PHP 5, PHP 7, PHP 8) file_put_contents — データをファイルに書き込む 説明 file_put_content ...
の配列を指定することもできます。この場合は file_put_contents($filename, implode('', $array)) と同じ意味になりま ...
して既存のコンテンツを取得します $current = file_get_contents ( $file ); // 新しい人物をファイルに追加します $cu ...
mith\n" ; // 結果をファイルに書き出します file_put_contents ( $file , $current ); ?> 例2 フラグの使用 <?php $f ...
-
https://man.plustar.jp/php/function.file-put-contents.html
- [similar]
- 例 8559
- « ストリームのエラー ストリームラッパーとして登録するクラスの例 » PHP Manual ストリーム 例 例 目
...
リームラッパーとして登録するクラスの例 例1 file_get_contents() を使って さまざまな場所からデータを取得する <?ph ...
ローカルファイルを読み出す */ $localfile = file_get_contents ( "/home/bar/foo.txt" ); /* 上と同一だが、明示的に ...
LE スキームを指定している */ $localfile = file_get_contents ( "file:///home/bar/foo.txt" ); /* HTTP を利用し、 ...
リモートのファイルを読み出す */ $httpfile = file_get_contents ( "http://www.example.com/foo.txt" ); /* HTTPS を利 ...
-
https://man.plustar.jp/php/stream.examples.html
- [similar]
- 名前を使用して、エントリのファイルハンドラ (読み込み専用) を取得する 8492
- « ZipArchive::getStatusString ZipArchive::getStreamIndex » PHP Manual ZipArchive 名前を使用して、
...
トリの内容を fread() で取得し、それを保存する <?php $contents = '' ; $z = new ZipArchive (); if ( $z -> open ( ' ...
$fp ) exit( "失敗\n" ); while (! feof ( $fp )) { $contents .= fread ( $fp , 2 ); } fclose ( $fp ); file_put_c ...
ontents ( 't' , $contents ); echo "終了\n" ; } ?> 例2 先ほどの例と同じことを ...
fopen() および zip ストリームラッパーで行う <?php $contents = '' ; $fp = fopen ( 'zip://' . dirname ( __FILE__ ...
-
https://man.plustar.jp/php/ziparchive.getstream.html
- [similar]
- Linearizes data within buffer and returns it's contents as a string 8414
- « EventBuffer::prependBuffer EventBuffer::read » PHP Manual EventBuffer Linearizes data within b
...
uffer and returns it's contents as a string EventBuffer::pullup (PECL event >= 1.2 ...
p — Linearizes data within buffer and returns it's contents as a string 説明 public EventBuffer::pullup ( int ...
e it potentially needs to copy the entire buffer's contents. パラメータ size The number of bytes required to b ...
bytes , size , from , pullup , string , returns , contents , within ...
-
https://man.plustar.jp/php/eventbuffer.pullup.html
- [similar]