皮皮网

【保税仓溯源码】【乳胶溯源码和没有溯源码的区别】【有溯源码和没溯源码的区别】php访问限制源码_php限制访问次数

2025-01-20 00:14:45 来源:spring平台源码

1.thinkphp怎么限制用户访问控制器

php访问限制源码_php限制访问次数

thinkphp怎么限制用户访问控制器

       举一个最简单的访访问例子,用session来控制访问,问限保税仓溯源码

<?php

       class IndexAction extends Action {

           private function checkRoot () {

               if ($_SESSION['root'] != 'admin') {

                   $this->redirect('/login');

               }

           }

           

           public function index () {

               $this->checkRoot();

           }

       }