Warning: open dir: not implemented

前端 未结 4 1458
余生分开走
余生分开走 2021-01-18 01:55

I\'m new to PHP, and I\'m trying to build a script. When I load the script, I get the following error:

Warning: opendir(http://www.hetweerinboskamp.nl/voorpagina/mov

4条回答
  •  清歌不尽
    2021-01-18 02:07

    opendir operates on directories on a filesystem, not HTTP URIs.

    While some HTTP URIs return directory listings (the one you are using doesn't, it is a 404 error), those listings as HTML documents generated by the webserver and are not actual directories.

提交回复
热议问题