API16

Difference between revisions of "JFilesystemHelper/getSupported"

From Joomla! Documentation

< API16:JFilesystemHelper
(New page: ===Description=== Returns the supported streams, in addition to direct file access Also includes Joomla! streams as well as PHP streams Array Streams <span class="editsection" style="...)
(No difference)

Revision as of 17:36, 22 March 2010

The "API16" namespace is an archived namespace. This page contains information for a Joomla! version which is no longer supported. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.

Description[edit]

Returns the supported streams, in addition to direct file access Also includes Joomla! streams as well as PHP streams Array Streams


[Edit Descripton]

Template:Description:JFilesystemHelper/getSupported

Syntax[edit]

getSupported()


Returns[edit]

Array Streams

Defined in[edit]

libraries/joomla/filesystem/helper.php

Importing[edit]

jimport( 'joomla.filesystem.helper' );

Source Body[edit]

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[edit]

<CodeExamplesForm />