This commit completes the merge process, incorporating remote changes that conflicted with local modifications. It also stages and commits all remaining modified and untracked files as per the user's instruction to 'upload everything without exception'.
11 lines
210 B
PHP
Executable File
11 lines
210 B
PHP
Executable File
<?php
|
|
// Clear PHP opcache if enabled
|
|
if (function_exists('opcache_reset')) {
|
|
opcache_reset();
|
|
echo "PHP opcache cleared.\n";
|
|
}
|
|
|
|
// Clear file cache
|
|
clearstatcache();
|
|
echo "File stat cache cleared.\n";
|