Home
last modified time | relevance | path

Searched refs:val (Results 126 – 150 of 411) sorted by relevance

12345678910>>...17

/PHP-5.5/tests/classes/
H A D__set__get_001.phpt24 function __set($nm, $val) {
25 echo "Setting [$nm] to $val\n";
28 $this->x[$nm] = $val;
H A D__set__get_004.phpt20 function __set($name, $val) {
21 $this->x[$name] = $val;
/PHP-5.5/ext/pdo/tests/
H A Dpdo_026.phpt58 $db->exec('CREATE TABLE test(id INT NOT NULL PRIMARY KEY, val VARCHAR(10), val2 VARCHAR(16))');
88 ["val"]=>
96 ["val"]=>
104 ["val"]=>
H A Dpdo_029.phpt64 $db->exec('CREATE TABLE test(id INT NOT NULL PRIMARY KEY, val VARCHAR(10), val2 VARCHAR(16))');
102 ["val"]=>
110 ["val"]=>
118 ["val"]=>
H A Dpdo_030.phpt62 $db->exec('CREATE TABLE test(id INT NOT NULL PRIMARY KEY, val VARCHAR(10), val2 VARCHAR(16))');
116 ["val"]=>
124 ["val"]=>
132 ["val"]=>
/PHP-5.5/ext/standard/tests/array/
H A Dbug30266.phpt9 function crash($val)
11 $this->b = $val;
H A Darray_fill_object.phpt2 Test array_fill() function : usage variations - various object values for 'val' argument
7 /* Prototype : array array_fill(int $start_key, int $num, mixed $val)
8 …ion: Create an array containing num elements starting with index start_key each initialized to val
13 * testing array_fill() by passing various object values for 'val' argument
176 //array of object values for 'val' argument
192 // loop through each element of the array for 'val' argument
194 echo "--- Testing array_fill() with different object values for 'val' argument ---\n";
199 $val = $objects[$index];
201 var_dump( array_fill($start_key,$num,$val) );
210 --- Testing array_fill() with different object values for 'val' argument ---
H A Darray_fill_object_2_4.phpt2 Test array_fill() function : usage variations - various object values for 'val' argument
7 /* Prototype : array array_fill(int $start_key, int $num, mixed $val)
8 …ion: Create an array containing num elements starting with index start_key each initialized to val
13 * testing array_fill() by passing various object values for 'val' argument
176 //array of object values for 'val' argument
192 // loop through each element of the array for 'val' argument
194 echo "--- Testing array_fill() with different object values for 'val' argument ---\n";
199 $val = $objects[$index];
201 var_dump( array_fill($start_key,$num,$val) );
210 --- Testing array_fill() with different object values for 'val' argument ---
H A Dcompact_basic.phpt20 $d=array("key"=>"val");
49 string(3) "val"
66 string(3) "val"
H A Darray_key_exists_basic.phpt18 $key2 = 'val';
19 $search = array('one', 'key' => 'value', 'val');
/PHP-5.5/ext/mysqlnd/
H A Dmysqlnd_bt.c33 #define TRACE_APPEND_STRL(val, vallen) \ argument
37 memcpy((*str) + *len, val, l); \
41 #define TRACE_APPEND_STR(val) \ argument
42 TRACE_APPEND_STRL(val, sizeof(val)-1)
/PHP-5.5/Zend/
H A Dzend_variables.c36 STR_FREE_REL(zvalue->value.str.val); in _zval_dtor_func()
82 str_free(zvalue->value.str.val); in _zval_internal_dtor()
122 if (!IS_INTERNED(zvalue->value.str.val)) { in _zval_copy_ctor_func()
123 zvalue->value.str.val = (char *) estrndup_rel(zvalue->value.str.val, zvalue->value.str.len); in _zval_copy_ctor_func()
H A Dzend_language_scanner.l625 file_handle.filename = filename->value.str.val; in compile_filename()
659 if (IS_INTERNED(str->value.str.val)) { in zend_prepare_string_for_scanning()
662 str->value.str.val = tmp; in zend_prepare_string_for_scanning()
664 str->value.str.val = safe_erealloc(str->value.str.val, 1, str->value.str.len, ZEND_MMAP_AHEAD); in zend_prepare_string_for_scanning()
672 buf = str->value.str.val; in zend_prepare_string_for_scanning()
887 s = t = zendlval->value.str.val; in zend_scan_escape_string()
991 s = zendlval->value.str.val; in zend_scan_escape_string()
1581 zendlval->value.str.val = (char *)estrndup(yytext, yyleng);
1717 zendlval->value.str.val = dirname;
2040 s = t = zendlval->value.str.val;
[all …]
/PHP-5.5/tests/basic/
H A D022.phpt7 cookie1=val1 ; cookie2=val2%20; cookie3=val 3.; cookie 4= value 4 %3B; cookie1=bogus; %20cookie1=i…
19 string(6) "val 3."
/PHP-5.5/Zend/tests/
H A Dbug28444.phpt38 function __set($prop, $val)
40 echo __METHOD__ . "($prop,$val)\n";
41 $this->props[$prop] = $val;
H A Dbug39449.phpt7 public function & __get($val) {
8 return $this->keys[$val];
/PHP-5.5/ext/intl/tests/
H A Dbug53512.phpt10 foreach ($badvals as $val) {
12 var_dump(numfmt_set_symbol($x, $val, ""));
H A Dcollator_get_set_attribute.phpt18 $val = ut_coll_get_attribute( $coll, Collator::NORMALIZATION_MODE );
19 return sprintf( "%s\n", ( $val == Collator::OFF ? "off" : "on" ) );
/PHP-5.5/ext/snmp/
H A Dsnmp.c553 zval *val; in php_snmp_getvalue() local
604 MAKE_STD_ZVAL(val); in php_snmp_getvalue()
610 ZVAL_STRINGL(val, (char *)vars->val.bitstring, vars->val_len, 1); in php_snmp_getvalue()
615 ZVAL_STRINGL(val, (char *)vars->val.string, vars->val_len, 1); in php_snmp_getvalue()
619 ZVAL_NULL(val); in php_snmp_getvalue()
629 (vars->val.string)[0], (vars->val.string)[1], in php_snmp_getvalue()
630 (vars->val.string)[2], (vars->val.string)[3]); in php_snmp_getvalue()
689 *snmpval = *val; in php_snmp_getvalue()
2113 zval *val; in php_snmp_get_properties() local
2128 Z_ADDREF_P(val); in php_snmp_get_properties()
[all …]
/PHP-5.5/ext/mysqli/tests/
H A Dmysqli_fetch_array_large.phpt87 $val = trim($limit);
88 $last = strtolower($val[strlen($val)-1]);
93 $val *= 1024;
95 $val *= 1024;
97 $val *= 1024;
101 return $val;
/PHP-5.5/ext/filter/tests/
H A D037.phpt9 function myfunc($val) {
10 return $val . '_callback';
/PHP-5.5/ext/pgsql/
H A Dpgsql.c5227 zval **val; local
5514 if (!strcmp(Z_STRVAL_PP(val), "t") || !strcmp(Z_STRVAL_PP(val), "T") ||
5515 !strcmp(Z_STRVAL_PP(val), "y") || !strcmp(Z_STRVAL_PP(val), "Y") ||
5516 !strcmp(Z_STRVAL_PP(val), "true") || !strcmp(Z_STRVAL_PP(val), "True") ||
5517 !strcmp(Z_STRVAL_PP(val), "yes") || !strcmp(Z_STRVAL_PP(val), "Yes") ||
5522 !strcmp(Z_STRVAL_PP(val), "n") || !strcmp(Z_STRVAL_PP(val), "N") ||
5524 !strcmp(Z_STRVAL_PP(val), "no") || !strcmp(Z_STRVAL_PP(val), "No") ||
5884 if (php_pgsql_convert_match(Z_STRVAL_PP(val), Z_STRLEN_PP(val),
6232 smart_str_appendl(&querystr, Z_STRVAL_PP(val), Z_STRLEN_PP(val));
6322 zval **val; local
[all …]
/PHP-5.5/ext/mbstring/
H A Dmbstring.c913 string.val = (unsigned char*)from; in php_mb_zend_encoding_converter()
937 *to = result.val; in php_mb_zend_encoding_converter()
2908 marker.val = NULL; in PHP_FUNCTION()
3025 output = (char *)ret->val; in php_mb_convert_encoding()
4217 efree(tmpstr.val); in PHP_FUNCTION()
4675 if (!haystack.val) { in php_mb_stripos()
4686 if (!needle.val) { in php_mb_stripos()
4720 if (haystack.val) { in php_mb_stripos()
4721 efree(haystack.val); in php_mb_stripos()
4724 if (needle.val) { in php_mb_stripos()
[all …]
/PHP-5.5/ext/spl/examples/
H A Ddbareader.inc22 private $val = false;
66 $this->val = dba_fetch($this->key, $this->db);
74 return $this->val;
/PHP-5.5/ext/standard/tests/file/
H A Dfputcsv.phpt39 foreach($res as &$val)
41 $val = substr($val, 0, -1);

Completed in 129 milliseconds

12345678910>>...17