API16:JFilesystemHelper/getSupported
From Joomla! Documentation
Description
Returns the supported streams, in addition to direct file access Also includes Joomla! streams as well as PHP streams Array Streams
<! removed transcluded page call, red link never existed >
Syntax
getSupported()
Returns
Array Streams
Defined in
libraries/joomla/filesystem/helper.php
Importing
jimport( 'joomla.filesystem.helper' );
Source Body
function getSupported() {
// really quite cool what php can do with arrays when you let it...
static $streams;
if(!$streams) $streams = array_merge(stream_get_wrappers(), JFilesystemHelper::getJStreams());
return $streams;
}
<! removed transcluded page call, red link never existed >
Examples
Code Examples