Home
last modified time | relevance | path

Searched refs:val (Results 176 – 200 of 469) sorted by relevance

12345678910>>...19

/PHP-7.1/ext/spl/examples/
H A Ddbareader.inc22 private $val = false;
66 $this->val = dba_fetch($this->key, $this->db);
74 return $this->val;
/PHP-7.1/Zend/tests/
H A Dbug39449.phpt7 public function & __get($val) {
8 return $this->keys[$val];
H A Dbug37212.phpt10 public function __construct($val)
12 $this->value = $val;
/PHP-7.1/Zend/tests/generators/
H A Dget_return_types.phpt38 function gen5($val) {
39 return (int) $val; // TMP
/PHP-7.1/ext/standard/
H A Dassert.c152 int val; in PHP_FUNCTION() local
201 val = Z_TYPE(retval) == IS_TRUE; in PHP_FUNCTION()
203 val = zend_is_true(assertion); in PHP_FUNCTION()
206 if (val) { in PHP_FUNCTION()
364 zend_string *val = zval_get_string(value); in PHP_FUNCTION() local
365 zend_alter_ini_entry_ex(key, val, PHP_INI_USER, PHP_INI_STAGE_RUNTIME, 0); in PHP_FUNCTION()
366 zend_string_release(val); in PHP_FUNCTION()
H A Dphp_smart_string.h93 #define smart_string_append_long(dest, val) \ argument
94 smart_string_append_long_ex((dest), (val), 0)
95 #define smart_string_append_unsigned(dest, val) \ argument
96 smart_string_append_unsigned_ex((dest), (val), 0)
/PHP-7.1/ext/pdo/tests/
H A Dpdo_014.phpt19 $db->exec('CREATE TABLE test(id int NOT NULL PRIMARY KEY, val VARCHAR(10), grp VARCHAR(10))');
22 $SELECT = 'SELECT val, grp FROM test';
75 ["val"]=>
82 ["val"]=>
H A Dpdo_015.phpt17 $db->exec('CREATE TABLE test(id int NOT NULL PRIMARY KEY, val VARCHAR(10), val2 VARCHAR(20))');
21 $select1 = $db->prepare('SELECT id, val, val2 FROM test');
22 $select2 = $db->prepare('SELECT val, val2 FROM test');
/PHP-7.1/ext/standard/tests/array/
H A Dbug36975.phpt10 $val = array_pop($a);
11 $a[] = $val;
H A Darray_count_values_variation.phpt27 $arrays = array ("bobk" => "bobv", "val", 6 => "val6", $fp, $ob);
44 ["val"]=>
H A Darray_udiff_basic.phpt11 function __construct($val) {
12 $this->priv_member = $val;
H A Darray_uintersect_assoc_basic.phpt11 function __construct($val) {
12 $this->priv_member = $val;
/PHP-7.1/ext/pdo/
H A Dpdo_stmt.c913 zval val; in do_fetch() local
932 zval_dtor(&val); in do_fetch()
1013 zval val; in do_fetch() local
1041 Z_ADDREF(val); in do_fetch()
1088 &val); in do_fetch()
1096 &val); in do_fetch()
1114 …value, ce, (unsigned char *)(Z_TYPE(val) == IS_STRING ? Z_STRVAL(val) : ""), Z_TYPE(val) == IS_STR… in do_fetch()
2567 zval val; in row_prop_exists() local
2570 res = check_empty ? i_zend_is_true(&val) : Z_TYPE(val) != IS_NULL; in row_prop_exists()
2571 zval_dtor(&val); in row_prop_exists()
[all …]
/PHP-7.1/ext/dba/tests/
H A Ddba_db4_handlers.phpt34 foreach ($h as $key => $val) {
36 echo "$val\n";
/PHP-7.1/ext/standard/tests/math/
H A Dround_error.phpt5 /* Prototype : float round ( float $val [, int $precision ] )
6 * Description: Returns the rounded value of val to specified precision (number of digits
/PHP-7.1/ext/standard/tests/file/
H A Dfputcsv_variation15.phpt41 foreach($res as &$val)
43 $val = substr($val, 0, -1);
/PHP-7.1/main/
H A Dfastcgi.h82 typedef void (*fcgi_apply_func)(char *var, unsigned int var_len, char *val, unsigned int val_len, v…
114 char* fcgi_putenv(fcgi_request *req, char* var, int var_len, char* val);
116 …* fcgi_quick_putenv(fcgi_request *req, char* var, int var_len, unsigned int hash_value, char* val);
/PHP-7.1/ext/spl/tests/
H A DSplFileObject_fputcsv.phpt37 foreach($res as &$val)
39 $val = substr($val, 0, -1);
/PHP-7.1/Zend/
H A Dzend_smart_str.h39 #define smart_str_append_long(dest, val) \ argument
40 smart_str_append_long_ex((dest), (val), 0)
41 #define smart_str_append_unsigned(dest, val) \ argument
42 smart_str_append_unsigned_ex((dest), (val), 0)
/PHP-7.1/ext/oci8/tests/
H A Dconn_attr_4.phpt61 foreach($values_array as $val ) {
62 oci_set_module_name($c1,$val);
63 oci_set_client_identifier($c1,$val);
64 oci_set_client_info($c1,$val);
65 $r = oci_set_action($c1,$val);
67 echo "Values set successfully to $val\n";
/PHP-7.1/ext/snmp/
H A Dsnmp.c541 zval val; in php_snmp_getvalue() local
596 ZVAL_STRINGL(&val, (char *)vars->val.bitstring, vars->val_len); in php_snmp_getvalue()
601 ZVAL_STRINGL(&val, (char *)vars->val.string, vars->val_len); in php_snmp_getvalue()
605 ZVAL_NULL(&val); in php_snmp_getvalue()
610 ZVAL_STRING(&val, buf); in php_snmp_getvalue()
615 (vars->val.string)[0], (vars->val.string)[1], in php_snmp_getvalue()
616 (vars->val.string)[2], (vars->val.string)[3]); in php_snmp_getvalue()
618 ZVAL_STRING(&val, buf); in php_snmp_getvalue()
667 ZVAL_STRING(&val, buf); in php_snmp_getvalue()
677 zval_ptr_dtor(&val); in php_snmp_getvalue()
[all …]
/PHP-7.1/tests/lang/
H A DpassByReference_003.phpt5 function passbyVal($val) {
7 var_dump($val);
/PHP-7.1/ext/reflection/tests/
H A DReflectionParameter_003.phpt41 $val = 0;
43 $val = $parameter->getDefaultValue();
44 var_dump($val);
/PHP-7.1/ext/spl/internal/
H A Dinfiniteiterator.inc27 foreach($limit as $val=>$key)
29 echo "$val=>$key\n";
/PHP-7.1/ext/opcache/
H A DZendAccelerator.c393 Z_NEXT(HT_HASH_TO_BUCKET(&ZCSG(interned_strings), prev)->val) = Z_NEXT(p->val); in accel_interned_strings_restore_state()
437 idx = Z_NEXT(p->val); in accel_find_interned_string()
477 idx = Z_NEXT(p->val); in accel_new_interned_string()
506 ZVAL_INTERNED_STR(&p->val, p->key); in accel_new_interned_string()
2272 if (Z_REFCOUNTED(ref->val) && Z_DELREF(ref->val) == 0) { in accel_fast_zval_dtor()
2273 zvalue = &ref->val; in accel_fast_zval_dtor()
2288 if (Z_REFCOUNTED(p->val) && Z_DELREF(p->val) == 0) { in accel_fast_hash_destroy()
2289 accel_fast_zval_dtor(&p->val); in accel_fast_hash_destroy()
2304 i = Z_NEXT(prev->val); in zend_accel_fast_del_bucket()
2307 Z_NEXT(prev->val) = Z_NEXT(p->val); in zend_accel_fast_del_bucket()
[all …]

Completed in 51 milliseconds

12345678910>>...19