From 8b39e83e241d827aa9ac1afa19c75a9e51f45ecb Mon Sep 17 00:00:00 2001 From: Dhiraj Kanchan <14177457+dhirajkanchan@users.noreply.github.com> Date: Fri, 4 Jan 2019 04:52:05 +1100 Subject: [PATCH] Fix if statement to use equal to operator instead of assignment operator. (#24522) Fix if statement to use Double equals (==) instead of Single equal (=) which would overwrite the value of $_GET['name'] variable. --- guide/chinese/php/conditionals/index.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/guide/chinese/php/conditionals/index.md b/guide/chinese/php/conditionals/index.md index eec65f91ea..306ba29a0f 100644 --- a/guide/chinese/php/conditionals/index.md +++ b/guide/chinese/php/conditionals/index.md @@ -10,7 +10,7 @@ PHP中的条件语句使用`if` , `elseif` , `else`语法编写。使用条 ```PHP