summaryrefslogtreecommitdiff
path: root/tests/func/002.phpt
blob: 563d39183e8ae5daa54cbe2775aba18755182bae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
--TEST--
Static variables in functions
--FILE--
<?php
function blah()
{
  static $hey=0,$yo=0;

  echo "hey=".$hey++.", ",$yo--."\n";
}

blah();
blah();
blah();
if (isset($hey) || isset($yo)) {
  echo "Local variables became global :(\n";
}
?>
--EXPECT--
hey=0, 0
hey=1, -1
hey=2, -2