ajax-chat/public/lib/class/AJAXChatFileSystem.php
2022-02-06 17:08:09 +01:00

22 lines
450 B
PHP

<?php
/*
* @package AJAX_Chat
* @author Sebastian Tschan
* @copyright (c) Sebastian Tschan
* @license GNU Affero General Public License
* @link https://blueimp.net/ajax/
*/
// Class to provide methods for file system access:
class AJAXChatFileSystem {
public static function getFileContents($file) {
if(function_exists('file_get_contents')) {
return file_get_contents($file);
} else {
return(implode('', file($file)));
}
}
}
?>