一个判断有关问题

WBOY
Release: 2016-06-13 13:28:36
Original
826 people have browsed it

一个判断问题
在已有登录cookie情况下执行一次test()函数,无论怎么刷新会员中心页面只执行一次test(),这个怎么做?给个思路

------解决方案--------------------
计数就是啦。执行一次后+1 ,判断大于 1 就不执行。
------解决方案--------------------
session记录啊,记录了就不执行。
------解决方案--------------------

探讨

计数就是啦。执行一次后+1 ,判断大于 1 就不执行。

------解决方案--------------------
不太了解你的cookie如何定义和使用的,可以定义一个cookie来控制test()是否执行。
------解决方案--------------------
PHP code

if(isset($_SESSION['hasTest']) && $_SESSION['hasTest']==true){
  // 不做任何事
}else{
  test();
  $_SESSION['hasTest']= false;
} <div class="clear">
                 
              
              
        
            </div>
Copy after login
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!