1 2 3 4 |
$p = 'upload_log.txt'; //file_put_contents($p, ''); $handle = fopen($p, 'ab'); fwrite($handle, 'Log file created' . PHP_EOL); |
1 2 3 4 |
$p = 'upload_log.txt'; //file_put_contents($p, ''); $handle = fopen($p, 'ab'); fwrite($handle, 'Log file created' . PHP_EOL); |