On Thu, 11 May 2006, Derick Rethans wrote:

> While I welcome new developments in either procedural or OO interfaces 
> in PHP I do not agree with breaking BC (between 5.1 and 5.2 in this 
> case) just for the sake of OO purity. In this example there is the 
> following class:

<snip>

I've one more of those things. How to test if you're using PHP 5.1 or 
PHP 5.2:

<?php

class Bla
{
}

$b = new Bla;

if( $b != null )
{
        echo "PHP 5.1";
}
else
{
        echo "PHP 5.2";
}
?>

regards,
Derick

-- 
Derick Rethans
http://derickrethans.nl | http://ez.no | http://xdebug.org

-- 
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to