UrlFetchStream
class UrlFetchStream implements IteratorAggregate, ArrayAccess (View source)
Constants
DOMAIN_SEPARATOR |
|
NEWLINE_SEPARATOR |
|
HTTP_METHODS |
|
Properties
$context | |||
$headers |
Methods
iterable
getIterator()
No description
bool
offsetExists($offset)
No description
offsetGet($offset)
No description
void
offsetSet($offset, $value)
No description
void
offsetUnset($offset)
No description
bool
stream_open(string $url, string $mode, int $optionsStream, null $openedPath)
Opens URL Stream.
void
stream_close()
Closes URL Stream.
bool
stream_eof()
Return if end of file.
void
stream_stat()
Returns URL Stats, Unused.
string
stream_read(int $count)
Read from stream.
bool
stream_seek(int $offset, int $whence = SEEK_SET)
Seeks to specific location in a stream.
int
stream_tell()
Retrieve the current position of a stream.
Details
at line 56
iterable
getIterator()
at line 61
bool
offsetExists($offset)
at line 65
offsetGet($offset)
at line 69
void
offsetSet($offset, $value)
at line 73
void
offsetUnset($offset)
at line 270
bool
stream_open(string $url, string $mode, int $optionsStream, null $openedPath)
Opens URL Stream.
at line 319
void
stream_close()
Closes URL Stream.
at line 337
bool
stream_eof()
Return if end of file.
at line 348
void
stream_stat()
Returns URL Stats, Unused.
Must be implemented for stream wrapper.
at line 361
string
stream_read(int $count)
Read from stream.
at line 378
bool
stream_seek(int $offset, int $whence = SEEK_SET)
Seeks to specific location in a stream.
at line 392
int
stream_tell()
Retrieve the current position of a stream.