Files
orico-official-website-old/app/usmobile/controller/Country.php
2024-10-29 14:04:59 +08:00

27 lines
491 B
PHP
Executable File

<?php
/**
* Created by PhpStorm.
* User: ORICO
* Date: 2018-12-10
* Time: 13:48
*/
namespace app\usmobile\controller;
use think\Controller;
use think\Session;
class Country extends Controller
{
public function index(){
// session_start();
$ct= session('cit',$_GET['cit']);
$ct = session('cit');
if($ct){
$this->success('修改成功');
}else{
$this->error('修改国家失败');
}
}
}