downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

SplFileObject::fscanf> <SplFileObject::flock
[edit] Last updated: Fri, 18 Sep 2009

view this page in

SplFileObject::fpassthru

(PHP 5 >= 5.1.0)

SplFileObject::fpassthruOutput all remaining data on a file pointer

Описание

public int SplFileObject::fpassthru ( void )

Reads to EOF on the given file pointer from the current position and writes the results to the output buffer.

You may need to call SplFileObject::rewind to reset the file pointer to the beginning of the file if you have already written data to the file.

Параметри

Тази функция няма параметри.

Връщани стойности

Returns the number of characters read from handle and passed through to the output.

Примери

Example #1 SplFileObject::fpassthru example

<?php

// Open the file in binary mode
$file = new SplFileObject("./img/ok.png""rb");

// Send the right headers
header("Content-Type: image/png");
header("Content-Length: " $file->getSize());

// Dump the picture and end script
$file->fpassthru();
exit;

?>

Вж. също

  • fpassthru() - Изкарва всичките оставащи данни от файлов указател



add a note add a note User Contributed Notes SplFileObject::fpassthru
There are no user contributed notes for this page.

 
show source | credits | stats | sitemap | contact | advertising | mirror sites