标签: php
调用DomDocument.load('./the/path/to/the/'.$this->image);时会抛出此错误,但是当我使用绝对路径而不是实例变量时,问题就会消失,即DomDocument.load('./the/path/to/the/image.png');。我在Windows机器上本地运行它,所以我认为所有权不是问题。
DomDocument.load('./the/path/to/the/'.$this->image);
DomDocument.load('./the/path/to/the/image.png');