标签: php
我正在解析网页的源代码,如下所示:
private function readPage() { header("Content-type: text/plain"); $this->pageSource = @readfile ($this->page); }
但似乎我无法将内容分配到“pageSource”变量中。哪里是我的错?
非常感谢你的帮助。
答案 0 :(得分:3)
readfile()读取文件并将其输出到STDOUT。我想你可能正在寻找file_get_contents()。
readfile()
file_get_contents()