php根据命令行参数生成配置文件详解
发布:smiling 来源: PHP粉丝网 添加日期:2021-11-12 10:51:50 浏览: 评论:0
这篇文章主要介绍了php根据命令行参数生成配置文件,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧。
像npm, composer等工具,在开始使用的使用,都需要初始化项目,生成一个项目的配置文件,这种功能的原理是怎么实现的呢?
比如:
- D:\>npm init --yes
- Wrote to D:\package.json:
- {
- "name": "",
- "version": "1.0.0",
- "description": "",
- "main": "index.js",
- "directories": {
- "doc": "doc"
- },
- "scripts": {
- "test": "echo \"Error: no test specified\" && exit 1"
- },
- "keywords": [],
- "author": "",
- "license": "ISC"
其实很简单,在之前这篇文章php解释命令行的参数的基础上,加上下面的init分支,即可实现类似的功能。
- #!/usr/bin/php
- <?php
- function init(){
- return file_put_contents( getcwd() . '/go.json', '{}' ) . 'bytes has written.' . 'config file has created';
- }
- $res = '';
- if( $argc >= 2 ) {
- $argv[1] == '-v' && $res = 'go version is 1.0';
- $argv[1] == 'init' && $res = init();
- }
- echo $res . PHP_EOL;
- ghostwu@ghostwu:~/mybin$ ls
- go2
- ghostwu@ghostwu:~/mybin$ go2 init
- 2bytes has written.config file has created
- ghostwu@ghostwu:~/mybin$ ls
- go2 go.json
- ghostwu@ghostwu:~/mybin$ cat go.json
- {}ghostwu@ghostwu:~/mybin$
Tags: php命令行参数 php生成配置
- 上一篇:详解PHP队列的实现
- 下一篇:使用Zookeeper分布式部署PHP应用程序
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)