Home
last modified time | relevance | path

Searched refs:the_var (Results 1 – 2 of 2) sorted by relevance

/PHP-5.6/ext/mysqlnd/
H A Dmysqlnd_ps_codec.c690 zval *the_var = stmt->param_bind[i].zv; in mysqlnd_stmt_execute_calculate_param_values_size() local
692 …if (!the_var || (stmt->param_bind[i].type != MYSQL_TYPE_LONG_BLOB && Z_TYPE_P(the_var) == IS_NULL)… in mysqlnd_stmt_execute_calculate_param_values_size()
696 if (stmt->param_bind[j].zv == the_var) { in mysqlnd_stmt_execute_calculate_param_values_size()
699 if (PASS != mysqlnd_stmt_copy_it(copies_param, the_var, stmt->param_count, i TSRMLS_CC)) { in mysqlnd_stmt_execute_calculate_param_values_size()
711 if (Z_TYPE_P(the_var) != IS_DOUBLE) { in mysqlnd_stmt_execute_calculate_param_values_size()
713 if (PASS != mysqlnd_stmt_copy_it(copies_param, the_var, stmt->param_count, i TSRMLS_CC)) { in mysqlnd_stmt_execute_calculate_param_values_size()
746 if (Z_TYPE_P(the_var) != IS_STRING) { in mysqlnd_stmt_execute_calculate_param_values_size()
748 if (PASS != mysqlnd_stmt_copy_it(copies_param, the_var, stmt->param_count, i TSRMLS_CC)) { in mysqlnd_stmt_execute_calculate_param_values_size()
753 the_var = (*copies_param)[i]; in mysqlnd_stmt_execute_calculate_param_values_size()
755 convert_to_string_ex(&the_var); in mysqlnd_stmt_execute_calculate_param_values_size()
[all …]
/PHP-5.6/ext/mysqli/
H A Dmysqli_api.c935 zval *the_var = copies && copies[i]? copies[i]:stmt->param.vars[i]; local
940 the_var = copies[i];
942 convert_to_string_ex(&the_var);
943 stmt->stmt->params[i].buffer = Z_STRVAL_P(the_var);
944 stmt->stmt->params[i].buffer_length = Z_STRLEN_P(the_var);
949 the_var = copies[i];
951 convert_to_double_ex(&the_var);
952 stmt->stmt->params[i].buffer = &Z_DVAL_P(the_var);
958 the_var = copies[i];
960 convert_to_long_ex(&the_var);
[all …]

Completed in 20 milliseconds