/PHP-5.6/ext/snmp/ |
H A D | snmp.c | 382 snmpobjarg *vars; member 565 if (snprint_value(buf, buflen, vars->name, vars->name_length, vars) == -1) { in php_snmp_getvalue() 627 (vars->val.string)[0], (vars->val.string)[1], in php_snmp_getvalue() 628 (vars->val.string)[2], (vars->val.string)[3]); in php_snmp_getvalue() 804 for (vars = response->variables; vars; vars = vars->next_variable) { in php_snmp_internal() 813 snprint_value(buf2, sizeof(buf2), vars->name, vars->name_length, vars); in php_snmp_internal() 844 …>vars[count].name_length == vars->name_length && snmp_oid_compare(objid_query->vars[count].name, o… in php_snmp_internal() 887 … memmove((char *)(objid_query->vars[0].name), (char *)vars->name, vars->name_length * sizeof(oid)); in php_snmp_internal() 888 objid_query->vars[0].name_length = vars->name_length; in php_snmp_internal() 906 vars = vars->next_variable, count++); in php_snmp_internal() [all …]
|
/PHP-5.6/main/ |
H A D | php_variables.c | 301 vars->ptr = vars->str.c; in add_post_vars() 302 vars->end = vars->str.c + vars->str.len; in add_post_vars() 313 if (!eof && vars->str.c != vars->ptr) { in add_post_vars() 314 memmove(vars->str.c, vars->ptr, vars->str.len = vars->end - vars->ptr); in add_post_vars() 724 zval *vars; in php_auto_globals_create_get() local 740 Z_ADDREF_P(vars); in php_auto_globals_create_get() 747 zval *vars; in php_auto_globals_create_post() local 766 Z_ADDREF_P(vars); in php_auto_globals_create_post() 773 zval *vars; in php_auto_globals_create_cookie() local 789 Z_ADDREF_P(vars); in php_auto_globals_create_cookie() [all …]
|
/PHP-5.6/ext/standard/tests/general_functions/ |
H A D | get_defined_vars_basic.phpt | 15 $vars = get_defined_vars(); 17 if (count($vars) != 0) { 33 $vars= get_defined_vars(); 35 if (count($vars) != 0) { 56 $vars = get_defined_vars(); 58 if (count($vars) == 0) { 77 ["vars"]=> 105 ["vars"]=> 127 ["vars"]=>
|
H A D | var_export_basic6.phpt | 44 private $vars = array (); 47 $this->vars[$name] = $val; 51 var_export ( $vars ); 139 'vars' => 144 'vars' => 149 'vars' => 286 'vars' => 291 'vars' => 296 'vars' =>
|
/PHP-5.6/Zend/tests/ |
H A D | bug38287.phpt | 2 Bug #38287 (static variables mess up global vars) 29 self::get_object()->vars[]=1; 30 self::get_object()->vars[]=2; 31 self::get_object()->vars[]=3; 32 var_dump(self::get_object()->vars);
|
H A D | bug29015.phpt | 2 Bug #29015 (Incorrect behavior of member vars(non string ones)-numeric mem vars und others)
|
H A D | settype_null.phpt | 16 $vars = array( 32 foreach ($vars as $var) {
|
H A D | cast_to_bool.phpt | 16 $vars = array( 32 foreach ($vars as $var) {
|
H A D | cast_to_int.phpt | 16 $vars = array( 32 foreach ($vars as $var) {
|
H A D | settype_bool.phpt | 16 $vars = array( 32 foreach ($vars as $var) {
|
H A D | cast_to_double.phpt | 18 $vars = array( 34 foreach ($vars as $var) {
|
H A D | settype_double.phpt | 18 $vars = array( 34 foreach ($vars as $var) {
|
H A D | settype_int.phpt | 16 $vars = array( 32 foreach ($vars as $var) {
|
H A D | cast_to_string.phpt | 16 $vars = array( 32 foreach ($vars as $var) {
|
H A D | settype_string.phpt | 16 $vars = array( 32 foreach ($vars as $var) {
|
H A D | cast_to_array.phpt | 20 $vars = array( 36 foreach ($vars as $var) {
|
H A D | settype_array.phpt | 20 $vars = array( 36 foreach ($vars as $var) {
|
/PHP-5.6/ext/pdo_dblib/ |
H A D | dblib_driver.c | 295 struct pdo_data_src_parser vars[] = { in pdo_dblib_handle_factory() local 304 nvars = sizeof(vars)/sizeof(vars[0]); in pdo_dblib_handle_factory() 320 if(vars[5].optval) { in pdo_dblib_handle_factory() 351 if (vars[0].optval) { in pdo_dblib_handle_factory() 352 DBSETLCHARSET(H->login, vars[0].optval); in pdo_dblib_handle_factory() 356 DBSETLAPP(H->login, vars[1].optval); in pdo_dblib_handle_factory() 360 if (vars[3].optval) { in pdo_dblib_handle_factory() 365 H->link = dbopen(H->login, vars[2].optval); in pdo_dblib_handle_factory() 376 if (vars[3].optval) { in pdo_dblib_handle_factory() 398 if (vars[i].freeme) { in pdo_dblib_handle_factory() [all …]
|
/PHP-5.6/sapi/phpdbg/ |
H A D | phpdbg_info.c | 89 PHPDBG_INFO(vars) /* {{{ */ in PHPDBG_INFO() argument 91 HashTable vars; in PHPDBG_INFO() local 110 zend_hash_init(&vars, 8, NULL, NULL, 0); in PHPDBG_INFO() 118 &vars, var, strlen(var)+1, (void**)data, sizeof(zval*), NULL); in PHPDBG_INFO() 140 "Variables @ %p (%d)", ops, zend_hash_num_elements(&vars)); in PHPDBG_INFO() 145 if (zend_hash_num_elements(&vars)) { in PHPDBG_INFO() 147 for (zend_hash_internal_pointer_reset_ex(&vars, &pos); in PHPDBG_INFO() 148 zend_hash_get_current_data_ex(&vars, (void**) &data, &pos) == SUCCESS; in PHPDBG_INFO() 149 zend_hash_move_forward_ex(&vars, &pos)) { in PHPDBG_INFO() 152 zend_hash_get_current_key_ex(&vars, &var, NULL, NULL, 0, &pos); in PHPDBG_INFO() [all …]
|
H A D | phpdbg_opcode.c | 49 asprintf(&decode, "$%s", ops->vars[op->var].name); in phpdbg_decode_op() 55 if (vars != NULL) { in phpdbg_decode_op() 56 if (zend_hash_index_find(vars, (zend_ulong) ops->vars - op->var, (void**) &pid) != SUCCESS) { in phpdbg_decode_op() 57 id = zend_hash_num_elements(vars); in phpdbg_decode_op() 59 vars, (zend_ulong) ops->vars - op->var, in phpdbg_decode_op() 94 decode[1] = phpdbg_decode_op(ops, &op->op1, op->op1_type, vars TSRMLS_CC); in phpdbg_decode_opline() 110 decode[1] = phpdbg_decode_op(ops, &op->op1, op->op1_type, vars TSRMLS_CC); in phpdbg_decode_opline() 119 decode[1] = phpdbg_decode_op(ops, &op->op1, op->op1_type, vars TSRMLS_CC); in phpdbg_decode_opline() 120 decode[2] = phpdbg_decode_op(ops, &op->op2, op->op2_type, vars TSRMLS_CC); in phpdbg_decode_opline() 122 decode[3] = phpdbg_decode_op(ops, &op->result, op->result_type, vars TSRMLS_CC); in phpdbg_decode_opline() [all …]
|
H A D | phpdbg_opcode.h | 27 char *phpdbg_decode_opline(zend_op_array *ops, zend_op *op, HashTable *vars TSRMLS_DC); 29 void phpdbg_print_opline_ex(zend_execute_data *execute_data, HashTable *vars, zend_bool ignore_flag…
|
/PHP-5.6/sapi/continuity/ |
H A D | capi.c | 241 value = lstFset_get(rc->t->vars, "uri"); in sapi_capi_register_server_variables() 248 value = lstFset_get(rc->t->vars, "ccode"); in sapi_capi_register_server_variables() 253 value = lstFset_get(rc->t->vars, "query"); in sapi_capi_register_server_variables() 273 value = lstFset_get(rc->t->vars, "protocol"); in sapi_capi_register_server_variables() 278 value = lstFset_get(rc->t->vars, "method"); in sapi_capi_register_server_variables() 283 value = lstFset_get(rc->t->vars, "query"); in sapi_capi_register_server_variables() 288 value = lstFset_get(rc->t->vars, "docroot"); in sapi_capi_register_server_variables() 334 value = lstFset_get(rc->t->vars, "path"); in sapi_capi_register_server_variables() 413 char *query_string = lstFset_get(NSG(t->vars), "query"); in capi_request_ctor() 414 char *uri = lstFset_get(NSG(t->vars), "uri"); in capi_request_ctor() [all …]
|
/PHP-5.6/ext/opcache/tests/ |
H A D | bug65845.phpt | 10 $Pile['vars'][(string)'toto'] = 'tutu'; 11 var_dump($Pile['vars']['toto']);
|
/PHP-5.6/ext/pdo_mysql/ |
H A D | mysql_driver.c | 737 if (vars[0].optval && mysql_options(H->server, MYSQL_SET_CHARSET_NAME, vars[0].optval)) { 743 dbname = vars[1].optval; 744 host = vars[2].optval; 745 if(vars[3].optval) { 746 port = atoi(vars[3].optval); 750 if (vars[2].optval && !strcmp(".", vars[2].optval)) { 752 if (vars[2].optval && !strcmp("localhost", vars[2].optval)) { 754 unix_socket = vars[4].optval; 789 for (i = 0; i < sizeof(vars)/sizeof(vars[0]); i++) { 790 if (vars[i].freeme) { [all …]
|
/PHP-5.6/scripts/dev/ |
H A D | check_parameters.php | 166 function get_params($vars, $str) argument 179 if (empty($vars[$name][0])) { 184 $ret[] = array($name, $vars[$name][0] . ($x[1] ? '*' : ''), $vars[$name][1]); 211 $vars = get_vars(substr($txt, 0, $m[0][1])); // limit var search to current location 212 $params = get_params($vars, $m[2][0]);
|