Home
last modified time | relevance | path

Searched refs:val (Results 1 – 25 of 481) sorted by path

12345678910>>...20

/PHP-7.2/
H A D.gdbinit213 set $cname = $zobj->ce->name->val
244 ____printzv &$zvalue->value.ref->val $arg1
247 printf "const: %s", $zvalue->value.str->val
337 if $p->val.u1.v.type > 0
344 printf "%s => ", $p->key->val
349 printf "%p\n", (zval *)&$p->val
352 set $zval = (zval *)&$p->val
356 printf "%s\n", (char*)$p->val.value.ptr
418 printf "class %s", $ce->name->val
438 printf "interface %s", $ce->name->val
[all …]
H A DREADME.input_filter104 assert(*val != NULL);
133 Z_STRVAL(new_var) = estrndup(*val, val_len);
143 php_strip_tags(*val, val_len, NULL, NULL, 0);
145 *new_val_len = strlen(*val);
/PHP-7.2/Zend/
H A Dmicro_bench.php206 $val = array(0,1,2,3,4,5,6,7,8,9);
208 $x = $val ?: null;
220 $val = array(0,1,2,3,4,5,6,7,8,9);
223 $x = $f ? null : $val;
/PHP-7.2/Zend/tests/assert/
H A Dexpect_015.phpt38 foreach ($a as $key => &$val) {
39 print "$key => $val\n";
178 foreach ($a as $key => &$val) {
179 print "$key => $val\n";
/PHP-7.2/Zend/tests/
H A Dbug28444.phpt38 function __set($prop, $val)
40 echo __METHOD__ . "($prop,$val)\n";
41 $this->props[$prop] = $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';
H A Dbug33171.phpt16 foreach ($this as $key => $val)
18 echo "$key => $val\n";
H A Dbug33512.phpt9 function __set($var, $val) {
10 $this->Var[$var] = $val;
H A Dbug37212.phpt10 public function __construct($val)
12 $this->value = $val;
H A Dbug39449.phpt7 public function & __get($val) {
8 return $this->keys[$val];
H A Dbug46409.phpt6 protected $val = 'hello, world';
9 return $this->val;
H A Dbug52484_2.phpt7 function __set($prop, $val) {
8 $this->$prop = $val;
H A Dbug64979.phpt21 foreach ($gen as $val) {
22 var_dump($val);
H A Dbug70321.phpt22 public function offsetSet($key, $val) {
H A Dbug71266.phpt9 foreach ($obj as $val) {
10 var_dump($val);
H A Dbug73663.phpt15 var_dump(list($val) = $array); // NG: Invalid opcode
17 change(list($val) = $array);
22 $func(list($val) = $array);
H A Dbug76800.phpt6 foreach($arr as $key => &$val) { // without & will print both keys
H A Dclass_constants_001.phpt7 const val = "string";
11 var_dump(test::val);
H A Dclass_constants_002.phpt7 const val = 1;
10 function foo($v = test::val) {
14 function bar($b = NoSuchClass::val) {
H A Dclass_constants_003.phpt9 const val = 1;
17 function foo($v = test::val) {
H A Dclosure_005.phpt17 function getIncer($val) {
18 return function() use ($val) {
19 $this->x += $val;
H A Ddebug_info-error-0.0.phpt7 public $val;
9 return $this->val;
11 public function __construct($val) {
12 $this->val = $val;
H A Ddebug_info-error-0.phpt7 public $val;
9 return $this->val;
11 public function __construct($val) {
12 $this->val = $val;
H A Ddebug_info-error-1.0.phpt7 public $val;
9 return $this->val;
11 public function __construct($val) {
12 $this->val = $val;
H A Ddebug_info-error-1.phpt7 public $val;
9 return $this->val;
11 public function __construct($val) {
12 $this->val = $val;

Completed in 27 milliseconds

12345678910>>...20