解决列表定义中linux下无法使用格式化函数的bug

This commit is contained in:
2020-04-16 15:57:44 +08:00
parent 2e9868764f
commit 521a678a22
4 changed files with 18 additions and 5 deletions

View File

@@ -123,7 +123,7 @@ class Model extends \think\Model{
$list[$field] = ['field' => $field, 'title' => $title];
if (strrpos($title, "|")) {
$title = explode("|", $title);
$list[$field] = ['field' => $field, 'title' => $title[0], 'format' => $title[1]];
$list[$field] = ['field' => $field, 'title' => $title[0], 'format' => trim($title[1])];
}
}
}