Zend Framework
LICENSE
This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.
_fread(
integer $length
=
1
)
:
stringReads $length number of bytes at the current position in the file and advances the file pointer.
Details_fwrite(
string $data, integer $length
=
null
)
:
Writes $length number of bytes (all, if $length===null) to the end of the file.
Detailsflush(
)
:
booleanFlush output.
Returns true on success or false on failure.
Detailslock(
integer $lockType, $nonBlockinLock
=
false
)
:
booleanLock file
Lock type may be a LOCK_SH (shared lock) or a LOCK_EX (exclusive lock)
DetailsreadBinary(
)
:
stringReads binary data from the current position in the file and advances the file pointer.
DetailsreadByte(
)
:
integerReads a byte from the current position in the file and advances the file pointer.
DetailsreadBytes(
integer $num
)
:
stringRead num bytes from the current position in the file and advances the file pointer.
DetailsreadInt(
)
:
integerReads an integer from the current position in the file and advances the file pointer.
DetailsreadLong(
)
:
integer|floatReturns a long integer from the current position in the file and advances the file pointer.
DetailsreadLong32Bit(
)
:
integer|floatReturns a long integer from the current position in the file, advances the file pointer and return it as float (for 32-bit platforms).
DetailsreadString(
)
:
stringReads a string from the current position in the file and advances the file pointer.
DetailsreadVInt(
)
:
integerReturns a variable-length integer from the current position in the file and advances the file pointer.
Detailsseek(
integer $offset, integer $whence
=
SEEK_SET
)
:
integerSets the file position indicator and advances the file pointer.
The new position, measured in bytes from the beginning of the file, is obtained by adding offset to the position specified by whence, whose values are defined as follows: SEEK_SET - Set position equal to offset bytes. SEEK_CUR - Set position to current location plus offset. SEEK_END - Set position to end-of-file plus offset. (To move to a position before the end-of-file, you need to pass a negative value in offset.) Upon success, returns 0; otherwise, returns -1
Detailstell(
)
:
integerGet file position.
Detailsunlock(
)
:
Unlock file
DetailswriteByte(
integer $byte
)
:
Writes a byte to the end of the file.
DetailswriteBytes(
string $data, integer $num
=
null
)
:
Writes num bytes of data (all, if $num===null) to the end of the string.
DetailswriteInt(
integer $value
)
:
Writes an integer to the end of file.
DetailswriteLong(
integer $value
)
:
Writes long integer to the end of file
DetailswriteLong32Bit(
integer|float $value
)
:
Writes long integer to the end of file (32-bit platforms implementation)
DetailswriteString(
string $str
)
:
Writes a string to the end of file.
DetailswriteVInt(
integer $value
)
:
Writes a variable-length integer to the end of file.
Details