20 lines
355 B
PHP
20 lines
355 B
PHP
<?php
|
|
|
|
|
|
namespace app\common\pay;
|
|
|
|
|
|
use app\common\yun\Config;
|
|
use app\common\yun\util\StringUtil;
|
|
|
|
class Conf
|
|
{
|
|
public static function config()
|
|
{
|
|
$config = new Config();
|
|
$config->mess = StringUtil::round(16);
|
|
$config->request_id = StringUtil::round(16);
|
|
$config->timestamp = time();
|
|
return $config;
|
|
}
|
|
} |