+ 1

$h = fopen('file.txt', 'a'); for($i=1;$i<=10; $i++) { ---------------($h, $i); } fclose($h);

24th Sep 2016, 4:24 PM
M.Devayani
4 odpowiedzi
+ 1
fwrite
26th Oct 2016, 2:32 AM
Carlos Alberto Carvajal
+ 1
$h = fopen ('file.txt', 'a'); for($i=1;$i<=10; $i++) {fwrite($h, $i); }fclose($h);
21st Sep 2017, 1:44 PM
Hasan Al Moussawi
0
Fill in the blanks to write the numbers 1 to 10 to the file. $h =fopen ('file.txt', 'a'); for($i=1;$i<=10; $i++) { fwrite($h, $i); } fclose($h); Answer : //fopen, //fwrite, //fclose
1st Mar 2020, 5:55 AM
Sadman Fahim
Sadman Fahim - avatar
0
fopen , fwrite and fclose
17th May 2022, 7:20 AM
Megha Raj kandel