php命令行生成与读取配置文件

2018-06-22 05:39:08来源:未知 阅读 ()

新老客户大回馈,云服务器低至5折

接着之前的文章:php根据命令行参数生成配置文件

ghostinit.php

<?php
    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 = json_decode( file_get_contents( getcwd() . '/go.json' ) );
            foreach( $conf as $k => $v ){
                echo $k . ':' . $v;
            }
        }

        static function getConfig( $conf ){
            $std = new stdClass();
            foreach( $conf as $k => $v ){
                $std->$k = $v;
            }
            return $std;
        }

        static function __callstatic( $m, $args ){
            echo 'error function';
        }

    }

?>

 

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:如何在windows系统下安装swoole

下一篇:【转载】详解 $_SERVER 函数中QUERY_STRING和REQUEST_URI区别