Lines Matching refs:col
73 ZEND_ARG_INFO(0, col)
98 ZEND_ARG_INFO(0, col)
461 zval **col; in PHP_FUNCTION() local
471 if (zend_parse_parameters(ZEND_NUM_ARGS(), "lZ", &ind, &col) == FAILURE) { in PHP_FUNCTION()
477 if ( Z_TYPE_PP(col) == IS_STRING ) { in PHP_FUNCTION()
478 field = Z_STRVAL_PP(col); in PHP_FUNCTION()
480 convert_to_long_ex(col); in PHP_FUNCTION()
481 indx = Z_LVAL_PP(col); in PHP_FUNCTION()
666 zend_long ind, col; in PHP_FUNCTION() local
670 if (zend_parse_parameters(ZEND_NUM_ARGS(), "ll", &ind, &col) == FAILURE) { in PHP_FUNCTION()
676 indx = col; in PHP_FUNCTION()