mirror of
https://github.com/php/php-src.git
synced 2024-11-24 10:24:11 +08:00
Fix ARG_INFO for levenshtein
This can work with 2 parameters (require) refs http://php.net/manual/ru/function.levenshtein.php refs https://github.com/phalcon/zephir/issues/753
This commit is contained in:
parent
997b7e5630
commit
e9c6798721
@ -1574,12 +1574,14 @@ ZEND_BEGIN_ARG_INFO(arginfo_iptcparse, 0)
|
||||
ZEND_ARG_INFO(0, iptcdata)
|
||||
ZEND_END_ARG_INFO()
|
||||
/* }}} */
|
||||
|
||||
/* {{{ lcg.c */
|
||||
ZEND_BEGIN_ARG_INFO(arginfo_lcg_value, 0)
|
||||
ZEND_END_ARG_INFO()
|
||||
/* }}} */
|
||||
|
||||
/* {{{ levenshtein.c */
|
||||
ZEND_BEGIN_ARG_INFO(arginfo_levenshtein, 0)
|
||||
ZEND_BEGIN_ARG_INFO_EX(arginfo_levenshtein, 0, 0, 2)
|
||||
ZEND_ARG_INFO(0, str1)
|
||||
ZEND_ARG_INFO(0, str2)
|
||||
ZEND_ARG_INFO(0, cost_ins)
|
||||
|
Loading…
Reference in New Issue
Block a user