在目录结构如下的php怎么自动加载呢?
看我的代码:
<?php
#framework/app.class.php
namespace Framework;
/**
* php namespace test
*/
class app
{
function __construct()
{
}
public static function niubai()
{
echo "this is niubai";
}
}
<?php #home.php 注意:home.php与framework同级 namespace home; use Framework\app; spl_autoload_register(function ($class) { if ($class) { $file = str_replace('\\', '/', $class); $file .= '.class.php'; //也可以不带class,同理在framework下的app.class.php的class要去掉。 if (file_exists($file)) { include $file; } } }); $app = new app(); $app->niubai(); // app::niubai(); //也可以这样子调用,哈,应为是static的。 ok,大功告成,访问home.php就可以后到输出啦:this is niubai. 要在home.php中加spl_autoload_register这个函数才能自动加载。
<?php #home.php 注意:home.php与framework同级 namespace home; use Framework\app; spl_autoload_register(function ($class) { if ($class) { $file = str_replace('\\', '/', $class); $file .= '.class.php'; //也可以不带class,同理在framework下的app.class.php的class要去掉。 if (file_exists($file)) { include $file; } } }); $app = new app(); $app->niubai(); // app::niubai(); //也可以这样子调用,哈,应为是static的。 ok,大功告成,访问home.php就可以后到输出啦:this is niubai. 要在home.php中加spl_autoload_register这个函数才能自动加载。
分类: web
标签:
搜索
标签
study
ab
amap
apache
apahe
awk
aws
bat
centos
CFS
chrome
cmd
cnpm
composer
consul
crontab
css
curl
cygwin
devops
di
docker
docker,docker-compose
ethereum
excel
fiddler
fluentd
framework
front-end
git
gitgui
github
glide
go
golang
gorm
grafana
gzip
ioc
item2
iterm2
javascript
jenkins
jsonp
kafka
laradock
laravel
larval
linux
liunux
log
mac
mac, wi-fi
macos
magento
mariaDB
minikube
mongoDB
msp
mysql
netbeans
nginx
nodejs
nohup
npm
nsq
php
php-fpm
php7
phpstorm
php扩展
Protobuf
python
redis
scp
server
shell
soap
socket
socket5
sql
sre
ssdb
ssh
ssl
study
sublime
swift
system
td-agent
uml
v2ray
vagrant
vagrnat
vim
vpn
vue
vue.js
webpack
webrtc
websocket
webtatic
windows
windows7
word
wps
xdebug
yarn
yii2
yum
zookeeper
世界国家
互联网
以太坊
分类
前端
小程序
打印机
排序算法
搞笑
权限
粤语
缓存
网络
虚拟机
视频
设计模式
项目管理
热门文章
友情链接