diff --git a/client/src/pages/guide/english/php/PHP Variables/index.md b/client/src/pages/guide/english/php/PHP Variables/index.md index ab718f3fa6..c47ce62cd7 100644 --- a/client/src/pages/guide/english/php/PHP Variables/index.md +++ b/client/src/pages/guide/english/php/PHP Variables/index.md @@ -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.