添加任务

This commit is contained in:
kuaifan
2021-06-03 00:34:58 +08:00
parent f8fa57ae78
commit 1c856c34f9
19 changed files with 587 additions and 262 deletions

View File

@@ -1921,7 +1921,12 @@ class Base
public static function getPostValue($key, $default = null)
{
return self::getContentValue($key, $default);
return self::newTrim(self::getContentValue($key, $default));
}
public static function getPostInt($key, $default = null)
{
return intval(self::getContentValue($key, $default));
}
/**