像npm, composer等工具,在開始使用的使用,都需要初始化項(xiàng)目,生成一個(gè)項(xiàng)目的配置文件。這種功能的原理是怎么實(shí)現(xiàn)的呢?
比如:
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"
其實(shí)很簡(jiǎn)單,在之前這篇文章php解釋命令行的參數(shù)的基礎(chǔ)上,加上下面的init分支,即可實(shí)現(xiàn)類似的功能
#!/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$
以上所述是小編給大家介紹的php根據(jù)命令行參數(shù)生成配置文件詳解整合,希望對(duì)大家有所幫助,如果大家有任何疑問(wèn)請(qǐng)給我留言,小編會(huì)及時(shí)回復(fù)大家的。在此也非常感謝大家對(duì)腳本之家網(wǎng)站的支持!
您可能感興趣的文章:- PHP如何獲取命令行參數(shù)
- php命令行模式代碼實(shí)例詳解
- php web環(huán)境和命令行環(huán)境下查找php.ini的位置
- php命令行寫shell實(shí)例詳解
- 命令行執(zhí)行php腳本中的$argv和$argc配置方法
- 利用PHP命令行模式采集股票趨勢(shì)信息
- 基于命令行執(zhí)行帶參數(shù)的php腳本并取得參數(shù)的方法
- php生成curl命令行的方法
- 實(shí)例講解yii2.0在php命令行中運(yùn)行的步驟
- 如何通過(guò)Linux命令行使用和運(yùn)行PHP腳本
- PHP的命令行擴(kuò)展Readline相關(guān)函數(shù)的使用