1
0
mirror of https://github.com/Pathduck/pathduck.github.io.git synced 2025-12-29 11:45:20 -05:00
Files
pathduck.github.io/test/cache/touch.php
Stian Lund be6af0e21b adds
2022-10-07 18:32:49 +02:00

10 lines
145 B
PHP
Executable File

<?php
$wd = getcwd();
$image = "$wd/vivaldi.jpg";
ignore_user_abort(true);
system("touch $image");
header("Location: index.html");
?>