Derick Rethans wrote:
On Mon, 7 Feb 2005, val khokhlov wrote:


      is there a way to find out version of zend engine (2 or 2.1)?
      i need it in the code like this:
#if defined(ZEND_ENGINE_2_1)
   ZEND_VM_SET_OPCODE_HANDLER(zo);
#elif defined(ZEND_ENGINE_2)
   zo->handler = zend_opcode_handlers[zo->opcode];
#endif


#if PHP_MAJOR_VERSION == 5 && PHP_MINOR_VERSION >= 1

works ;-)

Derick

wouldn't
#if PHP_MAJOR_VERSION >= 5 && PHP_MINOR_VERSION >= 1
be better in case this code would ever be used with a hypothetical PHP version 6? ;)


- tul

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



Reply via email to