cron php

Solutions on MaxInterview for cron php by the best coders in the world

showing results for - "cron php"
Jaden
24 Feb 2020
1$time = date("G:i:s");
2$entry = "Información guardada a las $time.\n";
3$file = "/var/www/testdir/test.cron.txt";
4$open = fopen($file,"a");
5 
6if ( $open ) {
7	fwrite($open,$entry);
8	fclose($open);
9}
10