API17

Difference between revisions of "JStream::appendFilter"

From Joomla! Documentation

(Bulk upload by Doxiki2)
 
(Updated to r1448:247ba8d88526)
(One intermediate revision by the same user 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}}
 
{{Description:JStream::appendFilter}}
Line 8: Line 8:
 
<nowiki>[</nowiki>[[Description:JStream::appendFilter|Edit Descripton]]<nowiki>]</nowiki>
 
<nowiki>[</nowiki>[[Description:JStream::appendFilter|Edit Descripton]]<nowiki>]</nowiki>
 
</span>
 
</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 38:
 
|-
 
|-
 
|}
 
|}
===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
 
===Referenced by===
 
 
===See also===
 
===See also===
 +
* {{JVer|11.1}} '''JStream::appendFilter source code''' on [[jplatform:filesystem/stream.php#cl-926|BitBucket]]
 +
* {{JVer|11.1}} Class [[JStream/11.1|JStream]]
 +
* {{JVer|11.1}} Subpackage [[Subpackage_Filesystem/11.1|Filesystem]]
 +
* [[JStream::appendFilter|Other versions of JStream::appendFilter]]
 +
{{SeeAlso:JStream::appendFilter}}
 
<span class="editsection" style="font-size:76%;">
 
<span class="editsection" style="font-size:76%;">
 
<nowiki>[</nowiki>[[SeeAlso:JStream::appendFilter|Edit See Also]]<nowiki>]</nowiki>
 
<nowiki>[</nowiki>[[SeeAlso:JStream::appendFilter|Edit See Also]]<nowiki>]</nowiki>
 
</span>
 
</span>
* [[JStream/11.1|JStream]]
+
===User contributed notes===
* [[JStream::appendFilter|Other versions of this method]]
 
{{SeeAlso:JStream::appendFilter}}
 
===Examples===
 
 
<CodeExamplesForm />
 
<CodeExamplesForm />
 
<dpl>
 
<dpl>
Line 57: Line 58:
 
category=MethodExample
 
category=MethodExample
 
include=*
 
include=*
 +
namespace=CodeExample
 
format= ,,,
 
format= ,,,
 
</dpl>
 
</dpl>
 
<noinclude>[[Category:JStream]][[Category:JStream::appendFilter]]</noinclude>
 
<noinclude>[[Category:JStream]][[Category:JStream::appendFilter]]</noinclude>

Revision as of 21:42, 27 April 2011

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.

Template:Description:JStream::appendFilter [Edit Descripton]

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]

Template:SeeAlso:JStream::appendFilter [Edit See Also]

User contributed notes[edit]

<CodeExamplesForm />