Invalid argument supplied for foreach() - using glob

前端 未结 3 1162
深忆病人
深忆病人 2021-01-23 16:42

Today i have a problem with my script, my script should search for (.css files)

I\'ve used a code to:

  1. Search for all subfolders in a root folder
3条回答
  •  春和景丽
    2021-01-23 16:58

    You say you are sure that your array is not empty, but what the Invalid argument supplied for foreach() error message means is that it is not even an array. Try it youself if you don't believe it:

    var_dump($add);
    

    Most likely, there was an error finding files and glob() is returning FALSE:

    Returns an array containing the matched files/directories, an empty array if no file matched or FALSE on error.

提交回复
热议问题