API17:JFile::write
From Joomla! Documentation
(Difference between revisions)
(Bulk upload by Doxiki2) |
(Updated to r1448:247ba8d88526) |
||
| (One intermediate revision by one user not shown) | |||
| Line 8: | Line 8: | ||
<nowiki>[</nowiki>[[Description:JFile::write|Edit Descripton]]<nowiki>]</nowiki> | <nowiki>[</nowiki>[[Description:JFile::write|Edit Descripton]]<nowiki>]</nowiki> | ||
</span> | </span> | ||
| − | |||
| − | |||
| − | |||
<source lang="php"> | <source lang="php"> | ||
| − | public static | + | public static function write ( |
| + | $file | ||
| + | &$buffer | ||
| + | $use_streams=false | ||
| + | ) | ||
</source> | </source> | ||
{| class="wikitable" | {| class="wikitable" | ||
| Line 37: | Line 38: | ||
|- | |- | ||
|} | |} | ||
| − | + | * '''Returns''' boolean True on success | |
| − | boolean True on success | + | * '''Defined''' on line 323 of libraries/joomla/filesystem/file.php |
| − | + | * '''Since''' {{JVer|11.1 }} | |
| − | libraries/joomla/filesystem/file.php | + | * '''Referenced by''' |
| − | + | ** [[JArchiveZip::_createZIPFile/11.1|JArchiveZip::_createZIPFile]] | |
| − | * [[JArchiveZip | + | ** [[JArchiveZip::_extract/11.1|JArchiveZip::_extract]] |
| − | * [[JArchiveZip | + | ** [[JArchiveZip::_extractNative/11.1|JArchiveZip::_extractNative]] |
| − | * [[JArchiveZip | + | ** [[JInstallerHelper::downloadPackage/11.1|JInstallerHelper::downloadPackage]] |
| − | * [[JInstallerHelper | + | ** [[JArchiveTar::extract/11.1|JArchiveTar::extract]] |
| − | * [[JArchiveTar | + | ** [[JPath::isOwner/11.1|JPath::isOwner]] |
| − | * [[JPath | + | |
===See also=== | ===See also=== | ||
| + | * {{JVer|11.1}} '''JFile::write source code''' on [[jplatform:filesystem/file.php#cl-315|BitBucket]] | ||
| + | * {{JVer|11.1}} Class [[JFile/11.1|JFile]] | ||
| + | * {{JVer|11.1}} Subpackage [[Subpackage_Filesystem/11.1|Filesystem]] | ||
| + | * [[JFile::write|Other versions of JFile::write]] | ||
| + | {{SeeAlso:JFile::write}} | ||
<span class="editsection" style="font-size:76%;"> | <span class="editsection" style="font-size:76%;"> | ||
<nowiki>[</nowiki>[[SeeAlso:JFile::write|Edit See Also]]<nowiki>]</nowiki> | <nowiki>[</nowiki>[[SeeAlso:JFile::write|Edit See Also]]<nowiki>]</nowiki> | ||
</span> | </span> | ||
| − | + | ===User contributed notes=== | |
| − | + | ||
| − | + | ||
| − | === | + | |
<CodeExamplesForm /> | <CodeExamplesForm /> | ||
<dpl> | <dpl> | ||
| Line 63: | Line 65: | ||
category=MethodExample | category=MethodExample | ||
include=* | include=* | ||
| + | namespace=CodeExample | ||
format= ,,, | format= ,,, | ||
</dpl> | </dpl> | ||
<noinclude>[[Category:JFile]][[Category:JFile::write]]</noinclude> | <noinclude>[[Category:JFile]][[Category:JFile::write]]</noinclude> | ||
Revision as of 20:56, 27 April 2011
This Namespace has been archived - Please Do Not Edit or Create Pages in this namespace. Pages contain information for a Joomla! version which is no longer supported. It exists only as a historical reference, will not be improved and its content may be incomplete.
JFile::write
Description
Write contents to a file.
Description:JFile::write [Edit Descripton]
public static function write ( $file &$buffer $use_streams=false )
| Parameter | Type | Default | Description |
|---|---|---|---|
| $file | string | The full file path | |
| &$buffer | string | $buffer The buffer to write | |
| $use_streams | false |
- Returns boolean True on success
- Defined on line 323 of libraries/joomla/filesystem/file.php
- Since
- Referenced by
See also
-
JFile::write source code on BitBucket
-
Class JFile
-
Subpackage Filesystem
- Other versions of JFile::write
SeeAlso:JFile::write [Edit See Also]
User contributed notes
<CodeExamplesForm />
