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
Template:Description:JFilesystemHelper/getSupported
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;
}
[Edit See Also] Template:SeeAlso:JFilesystemHelper/getSupported
Examples
<CodeExamplesForm />