首页 > 语言 > PHP > 正文

php根据命令行参数生成配置文件详解

2024-05-05 00:07:27
字体:
来源:转载
供稿:网友

像npm, composer等工具,在开始使用的使用,都需要初始化项目,生成一个项目的配置文件。这种功能的原理是怎么实现的呢?

比如:

D:/>npm init --yesWrote 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$ lsgo2ghostwu@ghostwu:~/mybin$ go2 init2bytes has written.config file has createdghostwu@ghostwu:~/mybin$ lsgo2 go.jsonghostwu@ghostwu:~/mybin$ cat go.json{}ghostwu@ghostwu:~/mybin$

以上所述是小编给大家介绍的php根据命令行参数生成配置文件详解整合,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对VeVb武林网网站的支持!


注:相关教程知识阅读请移步到PHP教程频道。
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表

图片精选