Home
last modified time | relevance | path

Searched refs:v (Results 1 – 25 of 604) sorted by path

12345678910>>...25

/PHP-5.5/
H A D.gdbinit35 set $v = $eg.current_execute_data.op_array.vars
40 printf "%d = %s\n", $i, $v[$i].name
H A DINSTALL530 enabled, php -v should contain PHP 5.2.5 (cgi-fcgi) Before PHP 5.2.3,
1197 line section of the PHP manual, and execute php -v to check the PHP
H A DNEWS3947 killed). (mikhail dot v dot gavrilov at gmail dot com, Chris Jones, Tony)
7126 - Fixed bug #42590 (Make the engine recognize \v and \f escape sequences).
7140 - Fixed bug #42453 (CGI SAPI does not shut down cleanly with -i/-m/-v cmdline
7836 - Fixed the validate email filter so that the letter "v" can also be used in
8286 - Fixed bug #39017 (foreach(($obj = new myClass) as $v); echo $obj;
H A DREADME.RELEASE_PROCESS75 7. Check ./sapi/cli/php -v output for version matching.
168 6. Check ./sapi/cli/php -v output for version matching.
H A DREADME.input_filter31 #define IF_G(v) TSRMG(my_input_filter_globals_id, zend_my_input_filter_globals *, v)
33 #define IF_G(v) (my_input_filter_globals.v)
/PHP-5.5/TSRM/
H A Dtsrm_virtual_cwd.h238 # define CWDG(v) TSRMG(cwd_globals_id, virtual_cwd_globals *, v) argument
241 # define CWDG(v) (cwd_globals.v) argument
H A Dtsrm_win32.h71 # define TWG(v) TSRMG(win32_globals_id, tsrm_win32_globals *, v) argument
73 # define TWG(v) (win32_globals.v) argument
/PHP-5.5/Zend/
H A DZend.dsp453 bison --output=zend_ini_parser.c -v -d -p ini_ zend_ini_parser.y
478 bison --output=zend_language_parser.c -v -d -p zend zend_language_parser.y
494 bison --output=zend_language_parser.c -v -d -p zend zend_language_parser.y
510 bison --output=zend_language_parser.c -v -d -p zend zend_language_parser.y
H A DZendTS.dsp485 bison --output=zend_ini_parser.c -v -d -p ini_ zend_ini_parser.y
501 bison --output=zend_ini_parser.c -v -d -p ini_ zend_ini_parser.y
517 bison --output=zend_ini_parser.c -v -d -p ini_ zend_ini_parser.y
533 bison --output=zend_ini_parser.c -v -d -p ini_ zend_ini_parser.y
556 bison --output=zend_language_parser.c -v -d -p zend zend_language_parser.y
572 bison --output=zend_language_parser.c -v -d -p zend zend_language_parser.y
588 bison --output=zend_language_parser.c -v -d -p zend zend_language_parser.y
604 bison --output=zend_language_parser.c -v -d -p zend zend_language_parser.y
/PHP-5.5/Zend/tests/
H A D030.phpt22 foreach ($this as $k => $v) {
23 printf("'%s' => '%s'\n", $k, $v);
H A Danonymous_func_002.phpt6 $test = create_function('$v', 'return $v;');
H A Dbug30725.phpt17 foreach($it as $v)
H A Dbug31341.phpt16 foreach ($a as $v) {
17 echo("'$v'\n");
H A Dbug32993.phpt20 foreach ($t as $v) {
21 echo "$v\n";
H A Dbug34467.phpt17 foreach (array (1,2,3) as $abc->k => $abc->v) {
18 var_dump($abc->k,$abc->v);
H A Dbug36303.phpt6 foreach($x->a->b as &$v) {
H A Dbug39017.phpt2 Bug #39017 (foreach(($obj = new myClass) as $v); echo $obj; segfaults)
6 foreach(($a=(object)new A()) as $v);
H A Dbug39449.phpt10 public function __set($k, $v) {
11 $this->keys[$k] = $v;
21 foreach ($a->arr as $k => $v) {
22 echo "$k => $v\n";
27 foreach ($a->arr as $k => $v) {
28 echo "$k => $v\n";
H A Dbug39775.phpt8 $v =& $this->array;
H A Dbug40509.phpt9 $c = $arr["v"];
10 foreach ($c as $v) {}
13 $arr["v"] = array("a");
15 var_dump(key($arr["v"]));
17 var_dump(key($arr["v"]));
18 foreach ($arr["v"] as $k => $v) {
21 var_dump(key($arr["v"]));
H A Dbug40705.phpt7 foreach ($array as $k => $v) {
16 foreach ($foo as $k => $v) {
H A Dbug41929.phpt10 foreach ($this as $k=>$v) {
11 echo "$k: $v\n";
H A Dbug43201.phpt9 function __set($k, $v) {
10 $this->$k = $v;
H A Dbug47699.phpt6 static function test($v='') {
H A Dbug54039.phpt6 static $v = 0;
7 ++$v;
8 echo "Outer function increments \$v to $v\n";
10 echo "Inner function reckons \$v is $v\n";
19 static $v = 0;
21 echo "Inner function reckons \$v is $v\n";
23 ++$v;
24 echo "Outer function increments \$v to $v\n";
33 $v .= 'b';
36 echo "Inner function reckons \$v is $v\n";
[all …]

Completed in 66 milliseconds

12345678910>>...25