API17

Difference between revisions of "JStream::writeFile"

From Joomla! Documentation

(Bulk upload by Doxiki2)
 
m (→‎See also: moving preparation)
(4 intermediate revisions by 2 users not shown)
Line 2: Line 2:
 
=={{JVer|11.1}} JStream::writeFile==
 
=={{JVer|11.1}} JStream::writeFile==
 
===Description===
 
===Description===
Writes a chunk of data to a file.  
+
All in one Writes a chunk of data to a file.  
  
 
{{Description:JStream::writeFile}}
 
{{Description:JStream::writeFile}}
Line 8: Line 8:
 
<nowiki>[</nowiki>[[Description:JStream::writeFile|Edit Descripton]]<nowiki>]</nowiki>
 
<nowiki>[</nowiki>[[Description:JStream::writeFile|Edit Descripton]]<nowiki>]</nowiki>
 
</span>
 
</span>
===Since===
 
{{JVer|11.1 }}
 
===Synopsis===
 
 
<source lang="php">
 
<source lang="php">
public JStream->writeFile ($filename, &$buffer)
+
public function writeFile (
 +
        $filename
 +
        &$buffer
 +
)
 
</source>
 
</source>
 
{| class="wikitable"
 
{| class="wikitable"
Line 32: Line 32:
 
|-
 
|-
 
|}
 
|}
===Returns===
+
* '''Returns''' boolean
bool
+
* '''Defined''' on line 1260 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::writeFile source code''' on [[jplatform:filesystem/stream.php#cl-1252|BitBucket]]
 +
* {{JVer|11.1}} Class [[API17:JStream|JStream]]
 +
* {{JVer|11.1}} Subpackage [[API17:Subpackage_Filesystem|Filesystem]]
 +
* [[API17:JStream::writeFile|Other versions of JStream::writeFile]]
 +
{{SeeAlso:JStream::writeFile}}
 
<span class="editsection" style="font-size:76%;">
 
<span class="editsection" style="font-size:76%;">
 
<nowiki>[</nowiki>[[SeeAlso:JStream::writeFile|Edit See Also]]<nowiki>]</nowiki>
 
<nowiki>[</nowiki>[[SeeAlso:JStream::writeFile|Edit See Also]]<nowiki>]</nowiki>
 
</span>
 
</span>
* [[JStream/11.1|JStream]]
+
===User contributed notes===
* [[JStream::writeFile|Other versions of this method]]
 
{{SeeAlso:JStream::writeFile}}
 
===Examples===
 
 
<CodeExamplesForm />
 
<CodeExamplesForm />
 
<dpl>
 
<dpl>
Line 52: Line 52:
 
category=MethodExample
 
category=MethodExample
 
include=*
 
include=*
 +
namespace=CodeExample
 
format= ,,,
 
format= ,,,
 
</dpl>
 
</dpl>
<noinclude>[[Category:JStream]][[Category:JStream::writeFile]]</noinclude>
+
<noinclude>[[Category:Platform 11.1]][[Category:Archived pages API17]]</noinclude>

Revision as of 21:35, 11 May 2013

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

Description[edit]

All in one Writes a chunk of data to a file.

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

public function writeFile (
        $filename
        &$buffer
)
Parameter Type Default Description
$filename $filename
&$buffer $buffer
  • Returns boolean
  • Defined on line 1260 of libraries/joomla/filesystem/stream.php
  • Since Joomla 11.1

See also[edit]

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

User contributed notes[edit]

<CodeExamplesForm />