Are there any other kinds of fetching remote data in PHP, except for: "cURL"
and having "allow_url_fopen"
in php.ini set to "On"
, to be able to stream remote content using "fopen"
, "fsockopen"
or "file_get_contents"
?
I'm working on a custom-PHP remote content streamer and I'm looking for any other ways of streaming remote content, if the "cURL"
or "allow_url_fopen"
is "Off"
.