Is there a difference between Zend Extension and PHP Extensions

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • mosesdinakaran@gmail.com

    Is there a difference between Zend Extension and PHP Extensions

    Hi All,

    Is there a difference between Zend Extension and PHP
    Extensions

    In php.ini
    For Mysql we have
    extension=mysql .so

    But for XDEBUG we have
    zend_extension = /usr/lib/php4/20020429/xdebug.so

    So what is the difference between these ?

    Thanks in Advance
    Moses


  • mosesdinakaran@gmail.com

    #2
    Re: Is there a difference between Zend Extension and PHP Extensions


    After surfing a while here I got the answer.

    Zend Engine extensions are extensions that are implemented right into
    the engine itself. For those of you who do not know, the Zend engine
    is what PHP is built on. It is the engine that parses, interprets and
    executes your PHP scripts. Changing the engine itself will change the
    way PHP works. Anything that will affect the language itself or its
    features is added to the Zend engine; this includes if statement
    evaluation, object orientation, mathematical expressions evaluation,
    etc.

    For more info


    Regards
    Moses





    On Mar 31, 8:49 pm, "mosesdinaka... @gmail.com"
    <mosesdinaka... @gmail.comwrote :
    Hi All,
    >
    Is there a difference between Zend Extension and PHP
    Extensions
    >
    In php.ini
    For Mysql we have
    extension=mysql .so
    >
    But for XDEBUG we have
    zend_extension = /usr/lib/php4/20020429/xdebug.so
    >
    So what is the difference between these ?
    >
    Thanks in Advance
    Moses

    Comment

    Working...