Pyh.conf’25: a new PHP conference for the Russian-speaking community

Voting

: min(zero, four)?
(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