作者:陈业贵 华为云享专家 51cto(专家博主 明日之星 TOP红人) 阿里云专家博主
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<form action="change.php" method="POST">
您要增加文件的绝对路径: <input type="text" name="path" id="">
您要增加什么文件呢?<input type="text" name="file" id="">
<input type="submit" value="提交">
</form>
</body>
</html>
<?php
$path=$_POST['path'];//要创建文件地方.某个目录下我这里是D:/phpstudy_pro/WWW/cyg/
$myfile = fopen($path.$_POST['file'],"w");//w可以往文件里面写东西
$txt = "Bill Gates\n";//写入这个变量中的数据。在666.txt文件中
fwrite($myfile, $txt);
fclose($myfile);//关闭文件
print_r($myfile);//运行文件
输入的绝对路径是不是这样的哦 /
扫码关注腾讯云开发者
领取腾讯云代金券
Copyright © 2013 - 2025 Tencent Cloud. All Rights Reserved. 腾讯云 版权所有
深圳市腾讯计算机系统有限公司 ICP备案/许可证号:粤B2-20090059 深公网安备号 44030502008569
腾讯云计算(北京)有限责任公司 京ICP证150476号 | 京ICP备11018762号 | 京公网安备号11010802020287
Copyright © 2013 - 2025 Tencent Cloud.
All Rights Reserved. 腾讯云 版权所有