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

12 lines
253 B
PHP

<?php
// $Header: /cvsroot/html2ps/stubs.file_get_contents.inc.php,v 1.1 2005/04/27 16:27:45 Konstantin Exp $
function file_get_contents($file) {
$lines = file($file);
if ($lines) {
return implode('',$lines);
} else {
return "";
};
}
?>