API17

Difference between revisions of "JStream::appendFilter"

From Joomla! Documentation

(Layout updates)
m (preparing for archive only)
 
(5 intermediate revisions by 2 users not shown)
Line 2: Line 2:
 
=={{JVer|11.1}} JStream::appendFilter==
 
=={{JVer|11.1}} JStream::appendFilter==
 
===Description===
 
===Description===
Append a filter to the chain.  
+
Stream filters Append a filter to the chain.  
 +
 
 +
 
  
{{Description:JStream::appendFilter}}
 
<span class="editsection" style="font-size:76%;">
 
<nowiki>[</nowiki>[[Description:JStream::appendFilter|Edit Descripton]]<nowiki>]</nowiki>
 
</span>
 
===Since===
 
{{JVer|11.1 }}
 
===Synopsis===
 
 
<source lang="php">
 
<source lang="php">
public JStream::appendFilter ($filtername, $read_write=STREAM_FILTER_READ, $params=array())
+
public function appendFilter (
 +
        $filtername
 +
        $read_write=STREAM_FILTER_READ
 +
        $params=array
 +
)
 
</source>
 
</source>
 
{| class="wikitable"
 
{| class="wikitable"
Line 37: Line 36:
 
|-
 
|-
 
|}
 
|}
===Returns===
+
* '''Returns''' mixed
mixed
+
* '''Defined''' on line 934 of libraries/joomla/filesystem/stream.php
===Defined in===
+
* '''Since''' {{JVer|11.1 }}
libraries/joomla/filesystem/stream.php (line 913)
 
* see source code in [[jplatform:filesystem/stream.php#cl-913|BitBucket]]
 
===Referenced by===
 
 
===See also===
 
===See also===
<span class="editsection" style="font-size:76%;">
+
* {{JVer|11.1}} '''JStream::appendFilter source code''' on [[jplatform:filesystem/stream.php#cl-926|BitBucket]]
<nowiki>[</nowiki>[[SeeAlso:JStream::appendFilter|Edit See Also]]<nowiki>]</nowiki>
+
* {{JVer|11.1}} Class [[API17:JStream|JStream]]
</span>
+
* {{JVer|11.1}} Subpackage [[API17:Subpackage_Filesystem|Filesystem]]
* [[JStream/11.1|JStream]]
+
* [[API17:JStream::appendFilter|Other versions of JStream::appendFilter]]
* [[JStream::appendFilter|Other versions of this method]]
+
 
{{SeeAlso:JStream::appendFilter}}
+
 
===Examples===
+
===User contributed notes===
<CodeExamplesForm />
+
=== Code Examples ===
 
<dpl>
 
<dpl>
 
noresultsheader=\n
 
noresultsheader=\n
 
category=JStream::appendFilter
 
category=JStream::appendFilter
category=CodeExample
+
namespace=CodeExample
 
category=MethodExample
 
category=MethodExample
 
include=*
 
include=*
 +
namespace=CodeExample
 
format= ,,,
 
format= ,,,
 
</dpl>
 
</dpl>
<noinclude>[[Category:JStream]][[Category:JStream::appendFilter]]</noinclude>
+
<noinclude>[[Category:Platform 11.1]][[Category:Archived pages API17]]</noinclude>

Latest revision as of 22:44, 24 March 2017

The "API17" 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.

Joomla 11.1 JStream::appendFilter[edit]

Description[edit]

Stream filters Append a filter to the chain.


public function appendFilter (
        $filtername
        $read_write=STREAM_FILTER_READ
        $params=array
)
Parameter Type Default Description
$filtername $filtername
$read_write $read_write STREAM_FILTER_READ
$params $params array()
  • Returns mixed
  • Defined on line 934 of libraries/joomla/filesystem/stream.php
  • Since Joomla 11.1

See also[edit]


User contributed notes[edit]

Code Examples[edit]