我正在尝试为来自网址的.jpg文件设置一个变量。
$picture = file_get_contents($picturedirectory);
其中$picturedirectory = "http://localhost:8080/Users/101/arows.jpg"
当我尝试发送文件时,收到错误消息,指出文件不存在。我应该提到我正在使用XAMPP。有什么想法可以解决此问题吗?
更新:
我还有更多线索:
is_file($ picture)返回NULL
答案 0 :(得分:0)
我认为您的网址有误,您需要在$ picture目录中传递完整的网址。
$picturedirectory = "http://localhost:8080/Users/101/arows.jpg"