API16

JFile/write: Difference between revisions

From Joomla! Documentation

m clean up
m preparing for archive only
 
Line 81: Line 81:


===Examples===
===Examples===
<CodeExamplesForm />
=== Code Examples ===
<dpl>
<dpl>
  noresultsheader=\n
  noresultsheader=\n
  category=write
  category=write
  category=JFile
  category=JFile
  category=CodeExample
  namespace=CodeExample
  category=MethodExample
  category=MethodExample
  include=*
  include=*

Latest revision as of 01:39, 25 March 2017

Description

Write contents to a file


<! removed transcluded page call, red link never existed >

Syntax

write($file, &$buffer, $use_streams=false)
Parameter Name Default Value Description
$file $file The full file path
&$buffer $buffer The buffer to write
$use_streams false

Returns

boolean True on success

Defined in

libraries/joomla/filesystem/file.php

Importing

jimport( 'joomla.filesystem.file' );

Source Body

function write($file, &$buffer, $use_streams=false)
{

        // If the destination directory doesn't exist we need to create it
        if (!file_exists(dirname($file))) {
                jimport('joomla.filesystem.folder');
                JFolder::create(dirname($file));
        }

        if($use_streams) {
                $stream =& JFactory::getStream();
                $stream->set('chunksize', (1024 * 1024 * 1024)); // beef up the chunk size to a meg
                if(!$stream->writeFile($file, $buffer)) {
                        JError::raiseWarning(21, 'JFile::write('. $file.'): '. $stream->getError());
                        return false;
                }
                return true;
        } else {
                // Initialise variables.
                jimport('joomla.client.helper');
                $FTPOptions = JClientHelper::getCredentials('ftp');

        if ($FTPOptions['enabled'] == 1) {
                // Connect the FTP client
                jimport('joomla.client.ftp');
                $ftp = & JFTP::getInstance($FTPOptions['host'], $FTPOptions['port'], null, $FTPOptions['user'], $FTPOptions['pass']);

                // Translate path for the FTP account and use FTP write buffer to file
                $file = JPath::clean(str_replace(JPATH_ROOT, $FTPOptions['root'], $file), '/');
                $ret = $ftp->write($file, $buffer);
        } else {
                $file = JPath::clean($file);
                $ret = file_put_contents($file, $buffer);
        }
        return $ret;
}
}


<! removed transcluded page call, red link never existed >

Examples

Code Examples