Home
last modified time | relevance | path

Searched refs:var (Results 1 – 25 of 858) sorted by path

12345678910>>...35

/PHP-5.5/
H A D.gdbinit555 set $tvar = (union _temp_variable *)((char *)$eg.current_execute_data->Ts + $znode->u.var)
560 set $tvar = (union _temp_variable *)((char *)$eg.current_execute_data->Ts + $znode->u.var)
561 ____printzv *$tvar->var.ptr_ptr 0
H A DINSTALL577 var controls how many children PHP will spawn to handle incoming
891 # cp /usr/local/share/doc/php4/php.ini-recommended /var/www/conf/php.ini
920 will restrict PHP scripts to accessing files under /var/www. You
921 will therefore need to create a /var/www/tmp directory for PHP
926 will need to be moved into /var/www/etc. The OpenBSD PEAR package
H A DNEWS3126 . break/continue $var syntax. (Dmitry)
7109 - Fixed bug #42772 (Storing $this in a static var fails while handling a cast
8496 - Fixed bug #37587 (var without attribute causes segfault). (Marcus)
8651 - Removed the E_STRICT deprecation notice from "var". (Ilia)
9584 - Fixed bug #32799 (crash: calling the corresponding global var during the
H A DREADME.TESTING123 TMPDIR=/var/tmp
H A DREADME.input_filter136 var_len = strlen(var);
139 strlcat(raw_var,var,var_len+5);
152 char *var;
157 if(zend_parse_parameters(2 TSRMLS_CC, "ls", &arg, &var, &var_len) == FAILURE) {
177 if(zend_hash_find(HASH_OF(array_ptr), var, var_len+5, (void **)&tmp) == SUCCESS) {
/PHP-5.5/Zend/RFCs/
H A D002.txt103 4 var $src;
H A D003.txt48 function foo ($var){
53 function foo (array $var){
/PHP-5.5/Zend/
H A DZEND_CHANGES714 function my_function(&$var = null) {
715 if ($var === null) {
716 die('$var needs to have a value');
785 var $x = array(1, 2, 3);
809 var $x = 1;
810 var $y = 2;
/PHP-5.5/Zend/tests/
H A D007.phpt7 $var = 1;
8 var_dump(each($var));
9 $var = "string";
10 var_dump(each($var));
11 $var = array(1,2,3);
12 var_dump(each($var));
13 $var = array("a"=>1,"b"=>2,"c"=>3);
14 var_dump(each($var));
H A D019.phpt5 /* Prototype: void unset ( mixed $var [, mixed $var [, mixed $...]] );
8 Prototype: bool empty( mixed $var );
11 Prototype: bool isset ( mixed $var [, mixed $var [, $...]] );
12 Description: Returns TRUE if var exists; FALSE otherwise
100 $var = 1; // a var which is defined
200 var $x;
201 var $y;
202 var $lable;
293 // unset the static var
300 // assign a value to static var
[all …]
H A D031.phpt6 function test($var) { }
H A D032.phpt6 function test(&$var) { }
H A D035.phpt6 static $var, $var, $var = -1;
7 var_dump($var);
9 global $var, $var, $var;
10 var_dump($var);
12 var_dump($GLOBALS['var']);
H A Daccess_modifiers_002.phpt7 static public public static final public final $var;
H A Daccess_modifiers_011.phpt18 public function __get($var)
20 return $this->$var;
H A Danonymous_func_003.phpt2 Using throw $var with anonymous function return
H A Dassign_to_var_001.phpt6 $var = array(1,2,3);
7 $var1 = &$var;
8 $var = $var[1];
10 var_dump($var);
H A Dassign_to_var_002.phpt6 $var = "intergalactic";
7 $var1 = &$var;
8 $var = $var[5];
10 var_dump($var);
H A Dassign_to_var_003.phpt6 $var = 0.213123123;
7 $var1 = &$var;
8 $var = $var[1];
10 var_dump($var);
H A Dassign_to_var_004.phpt6 $var = "intergalactic";
10 $var = $var2;
12 var_dump($var);
H A Dbug18556.phpt10 var $foo;
H A Dbug32799.phpt2 Bug #32799 (crash: calling the corresponding global var during the destruct)
H A Dbug33512.phpt9 function __set($var, $val) {
10 $this->Var[$var] = $val;
12 function __get($var) {
13 if(isset($this->Var[$var])) return $this->Var[$var];
16 function __unset($var) {
17 unset($this->Var[$var]);
H A Dbug33558.phpt8 $var = 'ok';
9 return $var;
H A Dbug34873.phpt6 public $var;
9 $this->var = array();
16 foreach ($cont as $this->var['key'] => $this->var['value'])
17 var_dump($this->var['value']);

Completed in 68 milliseconds

12345678910>>...35