2005-07-04 01:07:14 +00:00
|
|
|
<?php
|
2005-06-30 02:09:47 +00:00
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
// + $Id$
|
|
|
|
// +------------------------------------------------------------------+ //
|
2005-07-04 02:07:21 +00:00
|
|
|
// + Cake PHP : Rapid Development Framework <http://www.cakephp.org/> + //
|
2005-07-04 02:59:39 +00:00
|
|
|
// + Copyright: (c) 2005, CakePHP Authors/Developers + //
|
2005-06-30 02:09:47 +00:00
|
|
|
// + Author(s): Michal Tatarynowicz aka Pies <tatarynowicz@gmail.com> + //
|
|
|
|
// + Larry E. Masters aka PhpNut <nut@phpnut.com> + //
|
|
|
|
// + Kamil Dzielinski aka Brego <brego.dk@gmail.com> + //
|
|
|
|
// +------------------------------------------------------------------+ //
|
|
|
|
// + Licensed under The MIT License + //
|
|
|
|
// + Redistributions of files must retain the above copyright notice. + //
|
|
|
|
// + See: http://www.opensource.org/licenses/mit-license.php + //
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
/**
|
|
|
|
* with this hack you can use clone() in PHP4 code
|
|
|
|
* use "clone($object)" not "clone $object"! the former works in both PHP4 and PHP5
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* @filesource
|
2005-07-04 02:07:21 +00:00
|
|
|
* @author CakePHP Authors/Developers
|
2005-07-04 02:59:39 +00:00
|
|
|
* @copyright Copyright (c) 2005, CakePHP Authors/Developers
|
2005-07-04 01:07:14 +00:00
|
|
|
* @link https://trac.cakephp.org/wiki/Authors Authors/Developers
|
2005-06-30 02:09:47 +00:00
|
|
|
* @package cake
|
|
|
|
* @subpackage cake.libs
|
2005-07-04 02:07:21 +00:00
|
|
|
* @since CakePHP v 0.2.9
|
2005-06-30 02:09:47 +00:00
|
|
|
* @version $Revision$
|
|
|
|
* @modifiedby $LastChangedBy$
|
|
|
|
* @lastmodified $Date$
|
|
|
|
* @license http://www.opensource.org/licenses/mit-license.php The MIT License
|
|
|
|
*/
|
|
|
|
|
2005-07-04 04:16:20 +00:00
|
|
|
/**
|
|
|
|
* Enter description here...
|
|
|
|
*/
|
2005-07-16 06:10:56 +00:00
|
|
|
if (version_compare(phpversion(), '5.0') < 0)
|
|
|
|
{
|
2005-06-30 02:09:47 +00:00
|
|
|
eval('
|
2005-07-16 06:10:56 +00:00
|
|
|
function clone($object)
|
|
|
|
{
|
2005-06-30 02:09:47 +00:00
|
|
|
return $object;
|
|
|
|
}
|
|
|
|
');
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-07-04 04:16:20 +00:00
|
|
|
|
2005-07-16 06:10:56 +00:00
|
|
|
if (!function_exists('file_get_contents'))
|
|
|
|
{
|
2005-06-30 02:09:47 +00:00
|
|
|
/**
|
|
|
|
* Replace file_get_contents()
|
|
|
|
*
|
|
|
|
* @link http://php.net/function.file_get_contents
|
|
|
|
* @author Aidan Lister <aidan@php.net>
|
|
|
|
* @internal resource_context is not supported
|
|
|
|
* @since PHP 5
|
2005-07-04 04:16:20 +00:00
|
|
|
* require PHP 4.0.0 (user_error)
|
|
|
|
*
|
|
|
|
* @param unknown_type $filename
|
|
|
|
* @param unknown_type $incpath
|
|
|
|
* @return unknown
|
2005-06-30 02:09:47 +00:00
|
|
|
*/
|
|
|
|
function file_get_contents($filename, $incpath = false)
|
|
|
|
{
|
2005-07-16 06:10:56 +00:00
|
|
|
if (false === $fh = fopen($filename, 'rb', $incpath))
|
|
|
|
{
|
2005-06-30 02:09:47 +00:00
|
|
|
user_error('file_get_contents() failed to open stream: No such file or directory',
|
|
|
|
E_USER_WARNING);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
clearstatcache();
|
2005-07-16 06:10:56 +00:00
|
|
|
if ($fsize = @filesize($filename))
|
|
|
|
{
|
2005-06-30 02:09:47 +00:00
|
|
|
$data = fread($fh, $fsize);
|
2005-07-16 06:10:56 +00:00
|
|
|
} else
|
|
|
|
{
|
2005-06-30 02:09:47 +00:00
|
|
|
$data = '';
|
2005-07-16 06:10:56 +00:00
|
|
|
while (!feof($fh))
|
|
|
|
{
|
2005-06-30 02:09:47 +00:00
|
|
|
$data .= fread($fh, 8192);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fclose($fh);
|
|
|
|
return $data;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-05-15 21:41:38 +00:00
|
|
|
?>
|