Files
sentcms/extend/com/Version.php
2020-05-09 12:23:38 +08:00

23 lines
739 B
PHP

<?php
// +----------------------------------------------------------------------
// | SentCMS [ WE CAN DO IT JUST THINK IT ]
// +----------------------------------------------------------------------
// | Copyright (c) 2013 http://www.tensent.cn All rights reserved.
// +----------------------------------------------------------------------
// | Author: colin <colin@tensent.cn> <http://www.tensent.cn>
// +----------------------------------------------------------------------
namespace com;
use GuzzleHttp\Client;
/**
* @title 版本管理
* @description 版本管理类
*/
class Version{
public static function check(){
$client = new Client();
$res = $client->request('POST', 'http://www.tensent.cn/api/version/index');
}
}