코드:
결과보기 »
<!DOCTYPE html> <html lang="ko"> <head> <meta charset="UTF-8"> <title>PHP Variable Type</title> </head> <body> <?php function counter() { static $count = 0; // 정적 변수로 선언함 echo "함수 내에서 선언한 정적 변수 count의 값은 {$count}입니다.<br>"; $count++; } counter(); counter(); counter(); ?> </body> </html>