码迷,mamicode.com
首页 > Web开发 > 详细

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

时间:2018-04-28 23:47:22      阅读:323      评论:0      收藏:0      [点我收藏+]

标签:href   foreach   class   color   config   func   命令行   令行   pos   

接着之前的文章: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‘;
        }

    }

?>

 

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

标签:href   foreach   class   color   config   func   命令行   令行   pos   

原文地址:https://www.cnblogs.com/ghostwu/p/8969816.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!