mirror of
https://github.com/php/php-src.git
synced 2024-11-23 18:04:36 +08:00
22 lines
286 B
PHP
22 lines
286 B
PHP
--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
|