Skip to content

Commit 0889f00

Browse files
authored
Create 4.1.php
1 parent 07bfff1 commit 0889f00

File tree

1 file changed

+6
-0
lines changed
  • Demo/4#文件写入类函数

1 file changed

+6
-0
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?php
2+
$file = fopen("test.txt","w");
3+
echo fwrite($file,"Hello World. Testing!"); //21
4+
fclose($file);
5+
6+
?>

0 commit comments

Comments
 (0)