ComposerUpdate

This commit is contained in:
Anyon 2019-11-28 17:16:45 +08:00
parent 8501669f50
commit 39dcd2a4e4
2 changed files with 11 additions and 7 deletions

View File

@ -401,12 +401,12 @@
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/zoujingli/ThinkLibrary.git", "url": "https://github.com/zoujingli/ThinkLibrary.git",
"reference": "9b520cd35b4c7e9da6b928def3c5ec779e67bc0f" "reference": "8821ce7703baafc18f32668cf949e803e8c19904"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/9b520cd35b4c7e9da6b928def3c5ec779e67bc0f", "url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/8821ce7703baafc18f32668cf949e803e8c19904",
"reference": "9b520cd35b4c7e9da6b928def3c5ec779e67bc0f", "reference": "8821ce7703baafc18f32668cf949e803e8c19904",
"shasum": "", "shasum": "",
"mirrors": [ "mirrors": [
{ {
@ -426,7 +426,7 @@
"qiniu/php-sdk": "^7.2", "qiniu/php-sdk": "^7.2",
"topthink/framework": "5.1.*" "topthink/framework": "5.1.*"
}, },
"time": "2019-11-28T08:41:39+00:00", "time": "2019-11-28T09:08:14+00:00",
"type": "library", "type": "library",
"installation-source": "dist", "installation-source": "dist",
"autoload": { "autoload": {

View File

@ -86,10 +86,14 @@ class SystemService extends Service
* @param mixed $default 默认值 * @param mixed $default 默认值
* @return mixed * @return mixed
*/ */
public function getData($name, $default = null) public function getData($name, $default = [])
{ {
$value = Db::name('SystemData')->where(['name' => $name])->value('value'); try {
return empty($value) ? $default : unserialize($value); $value = Db::name('SystemData')->where(['name' => $name])->value('value');
return empty($value) ? $default : unserialize($value);
} catch (\Exception $e) {
return $default;
}
} }
/** /**