PHP中的相同字符串不匹配
这个问题在这里已经有了答案:
这是你的问题:
if ($current == null || $current = "") {
// ^ now `$current` is "", an empty string
您将一个新值赋给$current
,一个空字符串。
你可能想要这样的东西:
if ($current == null || $current == "") {
// ^^ now you are comparing
链接地址: http://www.djcxy.com/p/58465.html