What's the Difference Between Extension and zend_extension in php.ini?

你离开我真会死。 提交于 2019-11-29 23:38:09
Milen A. Radev

At the core of the PHP language (more like the interpreter, because a language is just a specification) is a software (interpreter, bytecode compiler) called "Zend Engine" developed by Zend.

Every module which messes with this core should be installed as a "zend_extension".

And yet, to solve your problem, ignore this attempt at explanation and consult the docs of the extension you're configuring - http://www.xdebug.org/docs/install.

Zend_extentions are belong to the extensions those are build into zend engine itself. PHP that is built in zend engine itself. This engine parses, interprets and executes php script. If we change the engine it will change the way of PHP work.

Following message will describe the main difference between extention and zend_extension of php

Both extension kinds share lots of stuff. The difference between both types is mainly in hooks they register into the Engine. Remember that, despite it is very uncommon, an extension can be both a PHP extension and a Zend extension at the same time. Xdebug is a good example.

Find below image for main schema

For more detail refer this link

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!