mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-03-28 17:42:57 +01:00
14 lines
196 B
PHP
14 lines
196 B
PHP
<?php
|
|
//php 5
|
|
function file_put_contents($filename, $data)
|
|
{
|
|
$fp = fopen($filename, 'w');
|
|
if ($fp)
|
|
{
|
|
$ret = fwrite($fp, $data);
|
|
fclose($fp);
|
|
return $ret;
|
|
}
|
|
return false;
|
|
}
|
|
?>
|