Skip to content

Instantly share code, notes, and snippets.

@ppprakhar
ppprakhar / wp-install-latest.php
Last active October 3, 2022 17:57 — forked from thagxt/downunzip.php
Easiest way to download & extract zip files from a remote server to yours.
<?php
// Identify directories
$source = __DIR__ . "/wordpress";
$destination = __DIR__;
// Cycle through all source files
function move_all($source, $destination) {
if (is_dir($source)) {
// Make the destination directory if not exist
@mkdir($destination);