PHP 8.5.0 Beta 1 available for testing

Voting

: seven minus zero?
(Example: nine)

The Note You're Voting On

fb at tigermedia dot dk
11 years ago
Please notice that the return value of this function is a boolean but the return value of fseek is 0 for ok and -1 for failure.

Please use this implementation when working with files:

function stream_seek($offset, $whence) {
if(0 === fseek($this->_handler, $offset, $whence)){
return true;
}
return false;
}

<< Back to user notes page

To Top