Add a "Variable lifecycle" short note (#19263)

This commit is contained in:
Shahriar Rashid Mahmud
2018-10-16 10:19:00 +06:00
committed by Quincy Larson
parent e8dd96f73a
commit e36832b1ca

View File

@ -27,5 +27,5 @@ In PHP, a variable starts with the $ sign, followed by the name of the variable.
?>
```
Variable lifecycle: Before a variable is used, it has no existence. It is unset. So you can't use it by writing isset($variable) before using it.