StringWrapper
String Stream Wrapper
This class allows you to use a PHP string in the same way that you would normally use a regular stream wrapper
since |
1.3.0 |
---|---|
package |
Joomla Framework |
Methods
stream_eof
End of field check
stream_eof() : bool
since |
1.3.0 |
---|
Response
bool
True if at end of field.
stream_flush
Stream flush, always returns true.
stream_flush() : bool
since |
1.3.0 |
---|---|
note |
Data storage is not supported |
Response
bool
stream_open
Method to open a file or URL.
stream_open(string path, string mode, int options, string &openedPath) : bool
since |
1.3.0 |
---|
Arguments
- path
string
The stream path.- mode
string
Not used.- options
int
Not used.- openedPath
string
Not used.
Response
bool
stream_read
Method to read a given number of bytes starting at the current position and moving to the end of the string defined by the current position plus the given number.
stream_read(int count) : string
link | |
---|---|
since |
1.3.0 |
Arguments
- count
int
Bytes of data from the current position should be returned.
Response
string
stream_seek
Stream offset
stream_seek(int offset, int whence) : bool
since |
1.3.0 |
---|
Arguments
- offset
int
The starting offset.- whence
int
SEEK_SET, SEEK_CUR, SEEK_END
Response
bool
True on success.
stream_stat
Method to retrieve information from a file resource
stream_stat() : array
link | |
---|---|
since |
1.3.0 |
Response
array
stream_tell
Method to get the current position
stream_tell() : int
since |
1.3.0 |
---|
Response
int
The position
stream_write
Stream write, always returning false.
stream_write(string data) : bool
since |
1.3.0 |
---|---|
note |
Updating the string is not supported. |
Arguments
- data
string
The data to write.
Response
bool
url_stat
Method to retrieve information about a file.
url_stat(string path, int flags) : array
link | |
---|---|
since |
1.3.0 |
Arguments
- path
string
File path or URL to stat- flags
int
Additional flags set by the streams API
Response
array
Properties
currentString
The current string
since |
1.3.0 |
---|
Type(s)
string
path
The path
since |
1.3.0 |
---|
Type(s)
string
mode
The mode
since |
1.3.0 |
---|
Type(s)
string
options
Enter description here .
..
since |
1.3.0 |
---|
Type(s)
string
openedPath
Enter description here .
..
since |
1.3.0 |
---|
Type(s)
string
pos
Current position
since |
1.3.0 |
---|
Type(s)
int
len
Length of the string
since |
1.3.0 |
---|
Type(s)
string
stat
Statistics for a file
since |
1.3.0 |
---|---|
link |
Type(s)
array