1 Star 0 Fork 0

Dark/PHP-MyFramework

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
inc_no_session.php 921 Bytes
一键复制 编辑 原始数据 按行查看 历史
Binny 提交于 2013-08-12 10:11 . Signed-off-by: Binny [email protected]
<?php
/**
* 页面的开始时间
*/
define('_PAGE_START_TIME_', microtime(true));
/**
* 字符编码
*/
header("Content-type: text/html; charset=utf-8");
/**
* 包含配置文件
*/
include(dirname(__FILE__) . '/conf.php');
/**
* 类的自动加载
*/
function autoLoad($strClassName) {
$strClassPath = CLASSES_PATH;
$strPre = substr($strClassName, 0, 2);
if ('c_' == $strPre) {
$strClassPath = CTRLS_PATH;
} elseif ('m_' == $strPre) {
$strClassPath = MODELS_PATH;
}
$strClassPath .= '/' . $strClassName . '.class.php';
if (file_exists($strClassPath)) {
require($strClassPath);
}
}
spl_autoload_register('autoLoad');
/**
* 输出短函数
*/
function p($str = null, $strDefault = null) {
if (!(null === $str || '' === $str)) {
print($str);
} elseif (!(null === $strDefault || '' === $strDefault)) {
print($strDefault);
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/darkmice/php-myframework.git
[email protected]:darkmice/php-myframework.git
darkmice
php-myframework
PHP-MyFramework
master

搜索帮助