php命令行按模板生成应用的入口文件
2018-06-22 05:39:13来源:未知 阅读 ()
接着这篇文章php命令行生成项目结构 继续改造:
ghostwu@dev:~/php/php1/12$ tree . ├── app │ └── index.php ├── core │ ├── frame │ │ ├── ghost_frame.php │ │ └── template │ │ └── index.tpl │ └── ghostinit.php ├── function.php ├── ghost └── go.json
index.tpl:
<?php echo '<?php' . PHP_EOL; ?> /** * project name: <?php echo $proj . PHP_EOL; ?> * author: <?php echo $author . PHP_EOL; ?> * date: <?php echo date('Y-m-d') . PHP_EOL; ?> * */ echo "hello ghostwu";
生成的入口文件就是按照这个 模板解释的, 模板中的变量从go.json读取
ghostinit.php:
namespace core; use core\frame\ghost_frame; class ghostinit{ static $v = 'ghost version is 1.1'; static function init(){ echo "pls input project name?" . PHP_EOL; $projName = fgets( STDIN ); echo "pls input author?" . PHP_EOL; $author = fgets( STDIN ); echo self::buildConfig( [ 'proj' => $projName, 'author' => $author ] ); } static function buildConfig( $info ){ return file_put_contents( getcwd() . '/go.json', json_encode( $info ) ) . ' bytes has written,' . 'config file has created' . PHP_EOL; } static function show(){ $conf = self::loadConfig(); foreach( $conf as $k => $v ){ echo $k . ':' . $v; } } static function loadConfig(){ return json_decode( file_get_contents( getcwd() . '/go.json' ) ); } static function start(){ $conf = self::loadConfig(); //$gf = new core\frame\ghost_frame( trim( $conf->proj ) ); //用use引入命名空间 就不需要每次都加上命名空间去实例化类 $gf = new ghost_frame( trim( $conf->proj ) ); $gf->proj = trim( $conf->proj ); $gf->author = trim( $conf->author ); $gf->run(); } static function __callstatic( $m, $args ){ echo 'error function'; } }
ghost_frame.php
namespace core\frame; class ghost_frame{ public $proj = ''; public $entrace_file = ''; public function __construct( $proj ) { $this->proj = $proj; } public function run(){ $dir = getcwd() . '/' . $this->proj; !file_exists( $dir ) && mkdir( $dir ); extract( get_object_vars( $this ) ); ob_start(); include( dirname( __FILE__ ) . '/template/index.tpl' ); $content = ob_get_contents(); ob_end_clean(); file_put_contents( $dir . '/index.php', $content ); } }
应用:
ghostwu@dev:~/php/php1/12$ tree . ├── core │ ├── frame │ │ ├── ghost_frame.php │ │ └── template │ │ └── index.tpl │ └── ghostinit.php ├── function.php └── ghost 3 directories, 5 files ghostwu@dev:~/php/php1/12$ ./ghost init pls input project name? Application pls input author? ghostwu 45 bytes has written,config file has created ghostwu@dev:~/php/php1/12$ tree . ├── core │ ├── frame │ │ ├── ghost_frame.php │ │ └── template │ │ └── index.tpl │ └── ghostinit.php ├── function.php ├── ghost └── go.json 3 directories, 6 files ghostwu@dev:~/php/php1/12$ ./ghost start ghostwu@dev:~/php/php1/12$ tree . ├── Application │ └── index.php ├── core │ ├── frame │ │ ├── ghost_frame.php │ │ └── template │ │ └── index.tpl │ └── ghostinit.php ├── function.php ├── ghost └── go.json 4 directories, 7 files ghostwu@dev:~/php/php1/12$ cat Application/index.php <?php /** * project name: Application * author: ghostwu * date: 2018-04-29 * */ echo "hello ghostwu"; ghostwu@dev:~/php/php1/12$
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- PHP写UltraEdit插件脚本实现方法 2020-03-29
- php 带逗号千位符数字的处理方法 2020-03-28
- PHP三元运算符的结合性介绍 2020-03-28
- PHP静态延迟绑定和普通静态效率的对比 2020-03-28
- 基于php流程控制语句和循环控制语句 2020-03-28
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash