Files
luos/thirdparty/html2ps_pdf/stubs.file_put_contents.inc.php
Paula Quispe 9eb7d6cac2 HOR-2689
2017-08-03 17:00:30 -04:00

9 lines
133 B
PHP

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