PHP中的相同字符串不匹配

这个问题在这里已经有了答案:

  • 3个不同等于4个答案

  • 这是你的问题:

    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

    上一篇: Identical Strings in PHP not matching

    下一篇: PHP echo with if not working