public function FnStream::tell in Lockr 7.3
Returns the current position of the file read/write pointer
Return value
int Position of the file pointer
Throws
\RuntimeException on error.
Overrides StreamInterface::tell
File
- vendor/
guzzlehttp/ psr7/ src/ FnStream.php, line 104
Class
- FnStream
- Compose stream implementations based on a hash of functions.
Namespace
GuzzleHttp\Psr7Code
public function tell() {
return call_user_func($this->_fn_tell);
}