为了账号安全,请及时绑定邮箱和手机立即绑定

如何调试 file_get_contents() 中的 HTTP 获取为何不起作用

如何调试 file_get_contents() 中的 HTTP 获取为何不起作用

PHP
炎炎设计 2021-09-05 20:37:26
我正在尝试以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 回答

?
烙印99

TA贡献1829条经验 获得超13个赞

变量的值已经是一个字符串。您不需要用额外的引号将其括起来:

$htmlcontent = file_get_contents($attrb);


查看完整回答
反对 回复 2021-09-05
  • 1 回答
  • 0 关注
  • 173 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信