gpt4 book ai didi

php - 使用 php 创建和写入文件

转载 作者:可可西里 更新时间:2023-11-01 00:17:37 26 4
gpt4 key购买 nike

是否可以在 php 中将变量传递给“file_get_contents”?我收到错误,想知道这是否是我的语法。我正在使用下面的代码。

$page=file_get_contents('http://localhost/home/form.php?id={$data['form_id']}');
$fp=fopen('form.html','w+');
fputs($fp,$page);
fclose($fp);

最佳答案

要使用此语法,请使用 " 引号而不是 ' 引号。

$page=file_get_contents("http://localhost/home/form.php?id={$data['form_id']}");

$page=file_get_contents('http://localhost/home/form.php?id='.$data['form_id']);

关于php - 使用 php 创建和写入文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3434210/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com