• 大小: 0.01M
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-01-30
  • 语言: PHP
  • 标签: php  系统  hp  

资源简介

php用户系统

资源截图

代码片段和文件信息

// set true if production environment else false for development
define (‘IS_ENV_PRODUCTION‘ true);

// configure error reporting options
error_reporting(E_ALL | E_STRICT);
ini_set(‘display_errors‘ !IS_ENV_PRODUCTION);
ini_set(‘error_log‘ ‘log/phperror.txt‘);

// set time zone to use date/time functions without warnings
date_default_timezone_set(‘America/New_York‘);

// compensate for magic quotes if necessary
if (get_magic_quotes_gpc())
{
    function _stripslashes_rcurs($variable $top = true)
    {
        $clean_data = array();
        foreach ($variable as $key => $value)
        {
            $key = ($top) ? $key : stripslashes($key);
            $clean_data[$key] = (is_array($value)) ?
                stripslashes_rcurs($value false) : stripslashes($value);
        }
     

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2007-11-25 01:32  ch_01\
     目录           0  2007-10-19 00:07  ch_01\lib\
     文件        1016  2008-01-14 02:29  ch_01\lib\common.php
     文件         541  2008-01-14 02:23  ch_01\lib\db.php
     文件        5468  2008-01-14 01:47  ch_01\lib\User.php
     文件         677  2008-01-14 01:17  ch_01\lib\functions.php
     目录           0  2008-01-14 01:49  ch_01\public_files\
     文件        2247  2007-11-25 01:18  ch_01\public_files\login.php
     文件        1375  2007-11-25 01:28  ch_01\public_files\401.php
     文件        2490  2007-12-16 10:08  ch_01\public_files\main.php
     文件        3804  2008-01-14 01:42  ch_01\public_files\register.php
     文件        2280  2008-01-14 01:50  ch_01\public_files\forgotpass.php
     目录           0  2007-10-22 12:47  ch_01\public_files\img\
     文件        1039  2008-01-14 01:19  ch_01\public_files\img\captcha.php
     目录           0  2007-10-19 18:55  ch_01\public_files\css\
     文件         282  2007-11-25 01:29  ch_01\public_files\css\styles.css
     目录           0  2007-10-22 13:23  ch_01\public_files\js\
     文件         365  2007-10-22 13:23  ch_01\public_files\js\401.js
     文件        1435  2008-01-14 01:47  ch_01\public_files\verify.php
     目录           0  2007-10-18 14:41  ch_01\sql\
     文件         772  2008-01-14 01:14  ch_01\sql\tables.sql
     目录           0  2007-10-19 18:55  ch_01\templates\
     文件         838  2008-01-14 01:17  ch_01\templates\template-page.php

评论

共有 条评论