API16

API16:JFilesystemHelper/getSupported

From Joomla! Documentation

Revision as of 01:40, 25 March 2017 by JoomlaWikiBot (talk | contribs) (preparing for archive only)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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