Compat function, fixes #2319

git-svn-id: http://svn.automattic.com/wordpress/trunk@3471 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
matt 2006-01-23 23:15:17 +00:00
parent 51944d9f2c
commit cdc37f33a4
1 changed files with 8 additions and 0 deletions

View File

@ -47,6 +47,14 @@ function printr($var, $do_not_echo = false) {
return $code;
}
/* compatibility with PHP versions older than 4.3 */
if ( !function_exists('file_get_contents') ) {
function file_get_contents( $file ) {
$file = file($file);
return !$file ? false : implode('', $file);
}
}
if (!defined('CASE_LOWER')) {
define('CASE_LOWER', 0);
}