我正在尝试将我从 html 表单中获取的数据写入 txt 文件,但我收到此错误:警告:fopen(/var/www/4/datos.txt):无法打开流:权限被拒绝 /第 13 行的 var/www/4/ComprobacionFormulario.php 警告:fwrite() 期望参数 1 是资源,第 16 行的 /var/www/4/ComprobacionFormulario.php 中给出的布尔值警告:fclose() 期望参数 1 是资源,在第 17 行的 /var/www/4/ComprobacionFormulario.php 中给出的布尔值
'datos.txt' 是我要写入的文件。这是我的php代码:
error_reporting(E_ALL);
ini_set('display_errors', true);
$des=$_POST['description'];
$cant=$_POST['quantity'];
$prec=$_POST['price'];
$nombrearchivo="datos.txt";
$content="Description: $des\tQuantity: $cant\tPrice: $prec\n";
$handle=fopen($nombrearchivo, 'w');
fwrite($handle, $content);
fclose($handle);