From 68129b15bf0d805b9649dc09c21a866624ba9afd Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Fri, 22 Jun 2018 14:18:33 +0800 Subject: [PATCH] JsCompile.php --- JsCompile.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/JsCompile.php b/JsCompile.php index c61d434d..c43144b8 100644 --- a/JsCompile.php +++ b/JsCompile.php @@ -124,7 +124,7 @@ class Pman_Core_JsCompile extends Pman } $tf = // sort exc. the .js - usort($ofiles,create_function('$a,$b', 'return Pman_Core_JsCompile::jsSort($a,$b);')); + usort($ofiles,function($a,$b) { return Pman_Core_JsCompile::jsSort($a,$b); }); //print_R($ofiles); @@ -295,8 +295,8 @@ class Pman_Core_JsCompile extends Pman if (!file_exists(dirname($output))) { mkdir(dirname($output), 0755, true); } - $lsort = create_function('$a,$b','return strlen($a) > strlen($b) ? 1 : -1;'); - usort($ofiles, $lsort); + + usort($ofiles, function($a,$b) { return strlen($a) > strlen($b) ? 1 : -1; }); //$eoutput = " -k -o " . escapeshellarg($output) ; // with whitespace.. $eoutput = " -t " . escapeshellarg($output) ; @@ -308,7 +308,7 @@ class Pman_Core_JsCompile extends Pman // //} - + $cmd = "$packer $eoutput -f " . implode($ofiles, ' -f ') . ' 2>&1'; //echo "
$cmd\n";
         //echo `$cmd`;
-- 
2.39.2