Home
last modified time | relevance | path

Searched refs:val (Results 26 – 50 of 425) sorted by relevance

12345678910>>...17

/PHP-5.6/Zend/tests/
H A Ddebug_info-error-str.phpt7 public $val;
9 return $this->val;
11 public function __construct($val) {
12 $this->val = $val;
H A Ddebug_info-error-true.phpt7 public $val;
9 return $this->val;
11 public function __construct($val) {
12 $this->val = $val;
H A Ddebug_info-error-object.phpt7 public $val;
9 return $this->val;
11 public function __construct($val) {
12 $this->val = $val;
H A Ddebug_info-error-resource.phpt9 public $val;
11 return $this->val;
13 public function __construct($val) {
14 $this->val = $val;
H A Dbug31683.phpt13 function __set($test, $val) {
15 var_dump($val);
17 $val = 'bug';
31 function offsetset($test, $val) {
33 var_dump($val);
35 $val = 'bug';
/PHP-5.6/ext/pdo/tests/
H A Dpdo_005.phpt22 $stmt = $db->prepare('SELECT id, val, val2 from test');
27 protected $val;
58 ["val"]=>
67 ["val"]=>
76 ["val"]=>
87 ["val":protected]=>
96 ["val":protected]=>
105 ["val":protected]=>
121 ["val":protected]=>
134 ["val":protected]=>
[all …]
H A Dpdo_025.phpt17 $db->exec('CREATE TABLE test(id INT NOT NULL PRIMARY KEY, val VARCHAR(10), val2 VARCHAR(16))');
36 public $id, $val, $val2;
51 public $val, $val2;
66 ["val"]=>
74 ["val"]=>
82 ["val"]=>
90 ["val"]=>
98 ["val"]=>
106 ["val"]=>
H A Dpdo_010.phpt21 $db->exec('CREATE TABLE test(id int NOT NULL PRIMARY KEY, classtype int, val VARCHAR(10), grp VARCH…
27 $stmt = $db->prepare('SELECT classtypes.name, test.grp AS grp, test.id AS id, test.val AS val FROM …
72 ["val"]=>
79 ["val"]=>
89 ["val"]=>
96 ["val"]=>
109 ["val"]=>
116 ["val"]=>
/PHP-5.6/ext/mbstring/
H A Dmb_gpc.c197 char *var, *val; in _php_mb_encoding_handler_ex() local
237 val = strchr(var, '='); in _php_mb_encoding_handler_ex()
238 if (val) { /* have a value */ in _php_mb_encoding_handler_ex()
243 *val++ = '\0'; in _php_mb_encoding_handler_ex()
244 val_list[n] = val; in _php_mb_encoding_handler_ex()
245 len_list[n] = php_url_decode(val, strlen(val)); in _php_mb_encoding_handler_ex()
317 var = (char *)resvar.val; in _php_mb_encoding_handler_ex()
325 val = (char *)resval.val; in _php_mb_encoding_handler_ex()
328 val = val_list[n]; in _php_mb_encoding_handler_ex()
333 val = estrndup(val, val_len); in _php_mb_encoding_handler_ex()
[all …]
/PHP-5.6/ext/spl/tests/
H A Diterator_011.phpt8 foreach(new LimitIterator(new InfiniteIterator(new EmptyIterator()), 0, 3) as $key=>$val)
10 echo "$key=>$val\n";
18 foreach($it as $val=>$key)
20 echo "$val=>$key\n";
29 foreach($it as $val=>$key)
31 echo "$val=>$key\n";
H A Diterator_018.phpt8 foreach(new LimitIterator(new InfiniteIterator(new EmptyIterator()), 0, 3) as $key=>$val)
10 echo "$key=>$val\n";
18 foreach($it as $val=>$key)
20 echo "$val=>$key\n";
29 foreach($it as $val=>$key)
31 echo "$val=>$key\n";
/PHP-5.6/ext/xmlrpc/
H A Dxmlrpc-epi-php.c343 if (list && val) { in add_zval()
382 zval** val; in set_output_options() local
416 } else if (!strcmp((*val)->value.str.val, VERSION_VALUE_SOAP11)) { in set_output_options()
525 zval* val = NULL; in PHP_to_XMLRPC_worker() local
528 if (val) { in PHP_to_XMLRPC_worker()
565 xReturn = XMLRPC_CreateValueString(key, Z_STRVAL_P(val), Z_STRLEN_P(val)); in PHP_to_XMLRPC_worker()
576 ht = HASH_OF(val); in PHP_to_XMLRPC_worker()
693 if (val) { in XMLRPC_to_PHP()
1461 zval** val; in get_zval_xmlrpc_type() local
1465 *newvalue = *val; in get_zval_xmlrpc_type()
[all …]
/PHP-5.6/tests/lang/
H A Dforeach_with_references_001.phpt8 foreach($arr as $key => $val) {
9 $val = $key;
14 foreach($arr as $key => &$val) {
15 $val = $key;
H A DpassByReference_005.phpt6 function v($val) {
7 $val = "Val changed";
20 function vr($val, &$ref) {
21 $val = "Val changed";
25 function rv(&$ref, $val) {
26 $val = "Val changed";
39 $val = "Val changed";
43 function v($val) {
44 $val = "Val changed";
57 $val = "Val changed";
[all …]
/PHP-5.6/ext/standard/tests/array/
H A Dbug45312.phpt7 function cr($val) {
8 $this->priv_member = $val;
26 foreach($result as $val) {
27 $val->dump();
30 foreach($result as $val) {
31 $val->dump();
H A Dbug12776.phpt6 function test($val,$key)
11 print "val: $val; key: $key\n"; flush();
23 val: v; key: k
H A Darray_fill_basic.phpt5 /* Prototype : proto array array_fill(int start_key, int num, mixed val)
6 …ion: Create an array containing num elements starting with index start_key each initialized to val
12 // calling the array_fill with all possible valid values for 'val' argument
19 // array of possible valid values for 'val' argument
36 $val = $values[$i];
38 var_dump( array_fill($start_key,$num,$val) );
H A Darray_fill_variation4.phpt2 Test array_fill() function : usage variations - using return value of array_fill for 'val' argument
5 /* Prototype : proto array array_fill(int start_key, int num, mixed val)
6 …ion: Create an array containing num elements starting with index start_key each initialized to val
10 /* passing array_fill() as the 'val' argument in array_fill() function */
20 // array of possible valid values for 'val' argument
37 $val = $values[$i];
39 var_dump( array_fill($start_key,$num,array_fill($start_key,$num,$val)) );
/PHP-5.6/sapi/apache2handler/
H A Dphp_functions.c177 char *key, *val; in PHP_FUNCTION() local
189 if (!val) val = ""; in PHP_FUNCTION()
201 char *key, *val; in PHP_FUNCTION() local
213 if (!val) val = ""; in PHP_FUNCTION()
438 char *key, *val; in PHP_MINFO_FUNCTION() local
444 if (!val) { in PHP_MINFO_FUNCTION()
445 val = ""; in PHP_MINFO_FUNCTION()
459 if (!val) { in PHP_MINFO_FUNCTION()
460 val = ""; in PHP_MINFO_FUNCTION()
468 if (!val) { in PHP_MINFO_FUNCTION()
[all …]
/PHP-5.6/ext/xmlrpc/libxmlrpc/
H A Dxmlrpc.c1100 if(val) { in XMLRPC_CreateVector()
1115 return val; in XMLRPC_CreateVector()
1339 if(val) { in XMLRPC_CreateValueString()
1374 if(val) { in XMLRPC_CreateValueInt()
1380 return val; in XMLRPC_CreateValueInt()
1406 if(val) { in XMLRPC_CreateValueBoolean()
1412 return val; in XMLRPC_CreateValueBoolean()
1692 if(val) { in XMLRPC_CreateValueDateTime()
1765 if(val) { in XMLRPC_CreateValueDateTime_ISO8601()
1834 if(val) { in XMLRPC_CreateValueBase64()
[all …]
/PHP-5.6/ext/simplexml/tests/
H A Dbug36611.phpt19 $val = 1;
21 var_dump($val);
22 $zml->pos["act_idx"] = $val;
23 var_dump($val) ;
/PHP-5.6/ext/reflection/tests/
H A Dbug62384.phpt6 $closure1 = function($val){ return $val; };
7 $closure2 = function($val){ return $val; };
/PHP-5.6/ext/session/
H A Dmod_user_class.c74 char *key, *val; in PHP_METHOD() local
83 if (PS(default_mod)->s_read(&PS(mod_data), key, &val, &val_len TSRMLS_CC) == FAILURE) { in PHP_METHOD()
88 RETVAL_STRINGL(val, val_len, 1); in PHP_METHOD()
89 str_efree(val); in PHP_METHOD()
98 char *key, *val; in PHP_METHOD() local
103 …if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ss", &key, &key_len, &val, &val_len) == FAIL… in PHP_METHOD()
107 RETVAL_BOOL(SUCCESS == PS(default_mod)->s_write(&PS(mod_data), key, val, val_len TSRMLS_CC)); in PHP_METHOD()
/PHP-5.6/Zend/tests/traits/
H A Dflattening001.phpt14 public function setTextT2($val) {
15 $this->text = $val;
23 public function setText($val) {
24 $this->text = $val;
/PHP-5.6/ext/gd/libgd/
H A Dmathmake.c40 int val; in main() local
41 val = cost[(i + 270) % 360]; in main()
44 printf ("%d,\n ", val); in main()
48 printf ("%d\n", val); in main()

Completed in 86 milliseconds

12345678910>>...17