Files
luos/thirdparty/html2ps_pdf/stubs.file_get_contents.inc.php

12 lines
253 B
PHP
Raw Normal View History

2010-12-02 23:34:41 +00:00
<?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 "";
};
}
?>