1
0
mirror of https://github.com/Pathduck/pathduck.github.io.git synced 2026-05-08 22:19:07 -04:00
Files
pathduck.github.io/test/cache/touch.php
2026-01-31 13:21:01 +01:00

13 lines
257 B
PHP
Executable File

<?php
$wd = getcwd();
$image = "$wd/vivaldi.jpg";
ignore_user_abort(true);
system("touch vivaldi.jpg");
system("mv style1.css style.tmp; mv style2.css style1.css; mv style.tmp style2.css");
system("touch style1.css");
header("Location: ./index.php");
?>