From 229da4ff5a81eb45ccab4b3b97d2f91fced4f052 Mon Sep 17 00:00:00 2001 From: Jan Lehnardt Date: Wed, 12 Dec 2001 23:00:47 +0000 Subject: [PATCH] fixed #13967 unsetting a static varible inside a function destryoes the variable. git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@64877 c90b9560-bf6c-de11-be94-00142212c4b1 --- functions/var.xml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/functions/var.xml b/functions/var.xml index 0c74c72b8f..21ddc94191 100644 --- a/functions/var.xml +++ b/functions/var.xml @@ -1,5 +1,5 @@ - + Variable Functions Variables @@ -1329,8 +1329,8 @@ something If a static variable is unset inside of a - function, unset unsets the reference to the - static variable, rather than the static variable itself. + function, unset destroyes the variable and all + its references.