Lines Matching refs:bind_n
1164 int bind_n = ZEND_NUM_ARGS() - bind_i, in PHP_FUNCTION() local
1167 if (bind_n != expected_n) { in PHP_FUNCTION()
1168 php_error_docref(NULL, (bind_n < expected_n) ? E_WARNING : E_NOTICE, in PHP_FUNCTION()
1169 "Statement expects %d arguments, %d given", expected_n, bind_n); in PHP_FUNCTION()
1170 if (bind_n < expected_n) { in PHP_FUNCTION()
1173 } else if (bind_n > 0) { in PHP_FUNCTION()
1788 int bind_n = 0; in PHP_FUNCTION() local
1794 if (FAILURE == zend_parse_parameters(ZEND_NUM_ARGS(), "|r*", &query, &args, &bind_n)) { in PHP_FUNCTION()
1803 if (bind_n != expected_n) { in PHP_FUNCTION()
1804 php_error_docref(NULL, (bind_n < expected_n) ? E_WARNING : E_NOTICE, in PHP_FUNCTION()
1805 "Statement expects %d arguments, %d given", expected_n, bind_n); in PHP_FUNCTION()
1807 if (bind_n < expected_n) { in PHP_FUNCTION()