|
@@ -4,7 +4,7 @@
|
|
|
// www.dbmxpca.com
|
|
// www.dbmxpca.com
|
|
|
// Date Created: May 18, 2020
|
|
// Date Created: May 18, 2020
|
|
|
// Last Updated: May 19, 2020
|
|
// Last Updated: May 19, 2020
|
|
|
-// Version: 2.01
|
|
|
|
|
|
|
+// Version: 2.02
|
|
|
|
|
|
|
|
// ====================================================================================
|
|
// ====================================================================================
|
|
|
// --- SETTINGS --- SETTINGS --- SETTINGS --- SETTINGS --- SETTINGS --- SETTINGS ---
|
|
// --- SETTINGS --- SETTINGS --- SETTINGS --- SETTINGS --- SETTINGS --- SETTINGS ---
|
|
@@ -263,6 +263,9 @@ foreach ($contents as $c){
|
|
|
$script_time_end = microtime(true);
|
|
$script_time_end = microtime(true);
|
|
|
$script_runtime = $script_time_end - $script_time_start;
|
|
$script_runtime = $script_time_end - $script_time_start;
|
|
|
|
|
|
|
|
|
|
+// Cleanup items no longer needed.
|
|
|
|
|
+$contents = null;
|
|
|
|
|
+
|
|
|
echo " > Base content map creation complete [" . $script_runtime . " ms].\n";
|
|
echo " > Base content map creation complete [" . $script_runtime . " ms].\n";
|
|
|
$total_items_old = count($content_map);
|
|
$total_items_old = count($content_map);
|
|
|
// Account for zero-based indexing.
|
|
// Account for zero-based indexing.
|
|
@@ -311,6 +314,9 @@ if ($total_items > 0)
|
|
|
$script_time_end = microtime(true);
|
|
$script_time_end = microtime(true);
|
|
|
$script_runtime = $script_time_end - $script_time_start;
|
|
$script_runtime = $script_time_end - $script_time_start;
|
|
|
|
|
|
|
|
|
|
+// Cleanup items no longer needed.
|
|
|
|
|
+$content_map = null;
|
|
|
|
|
+
|
|
|
echo " > Success: new content map created [" . $script_runtime . " ms].\n";
|
|
echo " > Success: new content map created [" . $script_runtime . " ms].\n";
|
|
|
echo " > FILE AND DIRECTORY PREVIEW:\n ================================\n";
|
|
echo " > FILE AND DIRECTORY PREVIEW:\n ================================\n";
|
|
|
|
|
|