当前位置: 首页>>代码示例>>PHP>>正文


PHP check_dirfile函数代码示例

本文整理汇总了PHP中check_dirfile函数的典型用法代码示例。如果您正苦于以下问题:PHP check_dirfile函数的具体用法?PHP check_dirfile怎么用?PHP check_dirfile使用的例子?那么, 这里精选的函数代码示例或许可以为您提供帮助。


在下文中一共展示了check_dirfile函数的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: step2

 public function step2()
 {
     if (IS_AJAX) {
         if (session('error')) {
             $this->error('环境检测没有通过,请调整环境后重试!');
         } else {
             $this->success('恭喜您环境检测通过', U('step3'));
         }
     } else {
         if (session('step') !== '1') {
             $this->error("请按顺序安装", U('step1'));
         } else {
             session('step', '2');
             session('error', false);
             //环境检测
             $this->assign('check_env', check_env());
             //目录文件读写检测
             if (IS_WRITE) {
                 $this->assign('check_dirfile', check_dirfile());
             }
             //函数及扩展库检测
             $this->assign('check_func_and_ext', check_func_and_ext());
             $this->assign('meta_title', "step2");
             $this->display();
         }
     }
 }
开发者ID:lipeng-github,项目名称:corethink,代码行数:27,代码来源:IndexController.class.php

示例2: step1

 public function step1()
 {
     if (IS_AJAX) {
         if (session('error')) {
             $this->error('环境检测没有通过,请调整环境后重试!');
         } else {
             $this->success('恭喜您环境检测通过', U('step2'));
         }
     } else {
         session('error', false);
         //环境检测
         $env = check_env();
         //目录文件读写检测
         if (IS_WRITE) {
             $dirfile = check_dirfile();
             $this->assign('dirfile', $dirfile);
         }
         //函数检测
         $func = check_func();
         session('step', 1);
         $this->assign('env', $env);
         $this->assign('func', $func);
         $this->display();
     }
 }
开发者ID:sayi21cn,项目名称:corethink,代码行数:25,代码来源:InstallController.class.php

示例3: step1

 public function step1()
 {
     session('error', false);
     //环境检测
     $env = check_env();
     //目录文件读写检测
     $dirfile = check_dirfile();
     //函数检测
     $func = check_func();
     session('step', 1);
     $this->assign('env', $env);
     $this->assign('dirfile', $dirfile);
     $this->assign('func', $func);
     $this->display();
 }
开发者ID:commiunty,项目名称:Mytest,代码行数:15,代码来源:InstallController.class.php


注:本文中的check_dirfile函数示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。