We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
PHP_FUNCTION(taint_implode) : #L2377 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "zz", &op1, &op2) == FAILURE) { ZVAL_FALSE(return_value); WRONG_PARAM_COUNT; }
"zz" 和 php src "implode" 不太一样
The text was updated successfully, but these errors were encountered:
implode can take 1 parameter, this message from php taint is incorrect:
"implode() expects exactly 2 parameters, 1 given in"
Sorry, something went wrong.
Fixed issue #16
0a2bc87
No branches or pull requests
PHP_FUNCTION(taint_implode) : #L2377
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "zz", &op1, &op2) == FAILURE) {
ZVAL_FALSE(return_value);
WRONG_PARAM_COUNT;
}
"zz" 和 php src "implode" 不太一样
The text was updated successfully, but these errors were encountered: