functions-compat.php shall hold PHP functions needed for PHP 4.1 compatibility

git-svn-id: http://svn.automattic.com/wordpress/trunk@1776 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
michelvaldrighi 2004-10-11 13:17:12 +00:00
parent 49cb88b7c0
commit 172b13b70a
1 changed files with 50 additions and 0 deletions

View File

@ -0,0 +1,50 @@
<?php
/* Functions missing from older PHP versions */
/* Added in PHP 4.2.0 */
if (!function_exists('floatval')) {
function floatval($string) {
return ((float) $string);
}
}
if (!function_exists('is_a')) {
function is_a($object, $class) {
// by Aidan Lister <aidan@php.net>
if (get_class($object) == strtolower($class)) {
return true;
} else {
return is_subclass_of($object, $class);
}
}
}
if (!function_exists('ob_clean')) {
function ob_clean() {
// by Aidan Lister <aidan@php.net>
if (@ob_end_clean()) {
return ob_start();
}
return false;
}
}
/* Added in PHP 4.3.0 */
function printr($var, $do_not_echo = false) {
// from php.net/print_r user contributed notes
ob_start();
print_r($var);
$code = htmlentities(ob_get_contents());
ob_clean();
if (!$do_not_echo) {
echo "<pre>$code</pre>";
}
return $code;
}
?>