将数据存储在静态 class [PHP]

Storing data in a static class [PHP]

大家好,圣诞快乐!

我在效率方面遇到了一些问题,希望 Whosebug 社区可以帮助我。

在我的一个(静态)classes 中,我有一个函数可以从我的数据库中获取大量信息,解析该信息并将其放入格式化数组中。这个 class 中的许多函数都依赖于那个格式化的数组,并且在整个 class 中,我多次调用它,这意味着应用程序在一个 运行 中多次经历这个过程,这我假设效率不高。所以我想知道是否有更有效的方法可以做到这一点。有没有一种方法可以让我将格式化数组存储在静态函数中,这样我就不必在每次需要来自格式化数组的信息时都重新执行整个过程?

private static function makeArray(){ 
   // grab information from database and format array here
   return $array;
}

public static function doSomething(){
   $data = self::makeArray();
   return $data->stuff;
}

public static function doSomethingElse(){
   $data = self::makeArray();
   return $data->stuff->moreStuff;
}

如果 makeArray() 的结果预计不会在脚本的一个 运行 期间发生变化,请考虑将其结果缓存在静态 class 属性 之后第一次被检索。为此,请检查变量是否为空。如果是,则执行数据库操作并保存结果。如果非空,只是 return 现有数组。

// A static property to hold the array
private static $array;

private static function makeArray() { 
   // Only if still empty, populate the array
   if (empty(self::$array)) {
     // grab information from database and format array here
     self::$array = array(...);
   }
   // Return it - maybe newly populated, maybe cached
   return self::$array;
}

您甚至可以在函数中添加一个布尔参数,以强制生成数组的新副本。

// Add a boolean param (default false) to force fresh data
private static function makeArray($fresh = false) { 
   // If still empty OR the $fresh param is true, get new data
   if (empty(self::$array) || $fresh) {
     // grab information from database and format array here
     self::$array = array(...);
   }
   // Return it - maybe newly populated, maybe cached
   return self::$array;
}

您的所有其他 class 方法可以像您已经完成的那样继续调用 self::makeArray()

public static function doSomething(){
   $data = self::makeArray();
   return $data->stuff;
}

如果您添加了可选的 fresh 参数并想强制从数据库中检索

public static function doSomething(){
   // Call normally (accepting cached values if present)
   $data = self::makeArray();
   return $data->stuff;
}
public static function doSomethingRequiringRefresh(){
   // Call with the $fresh param true
   $data = self::makeArray(true);
   return $data->stuff;
}