Manuál PHP | ||
---|---|---|
PÅ™edcházejÃcà | Dalšà |
ZEND_MOD_REQUIRED_EX
Popis
#include <zend_modules.h>
void ZEND_MOD_REQUIRED_EX ( char * name, char * rel, char * ver )
ZEND_MOD_REQUIRED_EX() generates a zend_module_dep
entry for the extension named by ext_name
, including version
information. It allows to specify requirements like "up to version x.y",
"starting with version x.y" or "exactly version x.y".
Varovánà |
Version specific comparisons are not implemented yet, so for now ZEND_MOD_REUQUIRE() and ZEND_MOD_REQUIRE_EX() define identical behavior. |
Seznam parametrů
name
Name of the required extension
rel
Comparison operator, one of eq, lt, le, gt, or ge
ver
Version string
Viz také
See ZEND_MOD_REQUIRED() if you do not need to specify extension version requirements.
See also ZEND_MOD_OPTIONAL(), ZEND_MOD_OPTIONAL_EX(), ZEND_MOD_CONFLICTS(), and ZEND_MOD_CONFLICTS_EX().
PÅ™edcházejÃcà | Domů | Dalšà |
ZEND_MOD_OPTIONAL | Nahoru |