Files
luos/gulliver/thirdparty/html2ps_pdf/stubs.file_put_contents.inc.php

9 lines
133 B
PHP
Executable File

<?php
function file_put_contents($filename, $data) {
$file = fopen($filename, 'w');
fwrite($file, $data);
fclose($file);
}
?>