我正在尝试以file_get_contents不同的方式使用。不知何故,它不是这样工作的。请看代码<?php$attrb = "https://html5andcss3.org";$htmlcontent = file_get_contents("'" .$attrb . "'");echo $htmlcontent;?>我收到错误信息但是当我以正常方式使用此代码时,它工作正常。请参阅下面的工作代码<?php$htmlcontent = file_get_contents('https://html5andcss3.org');echo $htmlcontent;?>我的问题是,我将在一个变量中获取 URL,我需要从那里开始。所以我不能直接放网址。
- 1 回答
- 0 关注
- 173 浏览
添加回答
举报
0/150
提交
取消