国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

php shell 編程

CrazyCodes / 1798人閱讀

摘要:譯注是創建了一個子進程,父進程和子進程都從的位置開始向下繼續執行,不同的是父進程執行過程中,得到的返回值為子進程號,而子進程得到的是。子進程得到的為所以這里是子進程執行的邏輯。

說明
腳本文件為:     phpCli
linux文件路徑: /usr/local/bin/phpCli (需要可執行權限 chmod +x phpCli)
linux執行:     phpCli
window執行:    php phpCli 
1.hash-bang 聲明
  #!/usr/local/bin/php -Cq

針對 linux 使用聲明,將腳本放置 linux 系統 默認shell執行位置 /usr/local/bin

文件名(一般無后綴)就是命令名稱 phpCli 對應執行命令為 /usr/local/bin/php -Cq /usr/local/bin/phpCli 參數

腳本操作比較大時建議 用后即焚 (關閉文件操作符,清空數組,關閉連接等)

2.基本參數
var_dump($argv);
/*array(2) {
    [0]=>
    string(6) "phpCli"
    [1]=>
    string(4) "test"
}*/

運行:phpCli test ;
cli 模式下,參數會保存在$argv中.

3.用戶輸入
print "please input something !"."
";
$message = trim(fgets(STDIN));
var_dump($message);
//test

標準輸入在 PHP流的 STDIN 中,或者 unix風格的 "終端輸入" 設備 /dev/tty 中獲得.
運行:phpCli 會得到提示語 please input something ! .
輸入信息 test ,var_dump($message)會輸出 test .

4.解析命令行選項
//這里使用了自定義
switch ("test")
{
    case "-m":
        $this->shell = "php -m";
        break;
    case "-v":
        echo $this->command." 1.0.1-dev (cli)";
        $this->putFormat(true);
        break;
    case "-h":
    case "-help":
        $this->help();
        break;
    default:
        $this->help();
        break;
}

PEAR 提供了 Console_Getopt包可以同時支付簡短和長格式(GNU風格)的選項.
默認是與PHP綁定安裝的,除非你關閉了PEAR .
也可以自行定義 .

5.良好的習慣(建議)

使用信息

退出代碼

錯誤信息

大多數都是用 一個簡短信息來響應 -h | -help

6.進程控制
/*pcntl_fork — 在當前進程當前位置產生分支(子進程)。
譯注:fork是創建了一個子進程,父進程和子進程 都從fork的位置開始向下繼續執行,
不同的是父進程執行過程中,得到的fork返回值為子進程 號,而子進程得到的是0。 */

$pid = pcntl_fork();
//父進程和子進程都會執行下面代碼
if ($pid == -1) {
    //錯誤處理:創建子進程失敗時返回-1.
    die("could not fork");
} else if ($pid) {
    //父進程會得到子進程號,所以這里是父進程執行的邏輯
    echo "this is parent test" ;
    pcntl_wait($status); //等待子進程中斷,防止子進程成為僵尸進程。
} else {
    //子進程得到的$pid為0, 所以這里是子進程執行的邏輯。
    echo "this is son test";
}

進程概念(自行了解)

Forking概念(自行了解)

7.簡單例子
#!/usr/local/bin/php -Cq
 "docker ps",
        "dsa" => "docker ps -a"
] ;

/** 執行shell
 * @var
 */
private $shell ;

/**
 * PHPCli constructor.
 * @param $argv
 */
public function __construct($argv)
{
    # 基本參數 入口文件
    $this->initFirst = $argv[0] ;
    array_shift($argv);

    $this->initData = $argv ;
}

/** 格式輸出
 * @param bool $end
 */
private function putFormat($end = false)
{
    print "
";
    if($end) {
        exit();
    }
}

/*
 * 使用說明
 */
private function help()
{
    $this->putFormat();
    print "Usage: ".$this->command." Command"."
";
    $this->putFormat();

    print "Options:"."
";
    print "         -v  Show phpCli version"."
";
    print "         -m  Show php model"."
";
    print "         -h  Display this help"."
";
    $this->putFormat();

    print "Commands:"."
";
    print "          ds     Run docker command `docker ps`"."
";
    print "          dsa    Run docker command `docker ps -a`"."
";
    $this->putFormat();
    exit();
}

/** shell運行
 * @return mixed
 */
private function shell()
{
    if(!$this->shell) {
        exit();
    }
    if($this->format) {
        //$status 格式輸出
        system($this->shell, $status);
    }else{
        // $status 以數組形式返回
        exec($this->shell, $status);
    }
    //passthru();
    return $status ;
}

/**
 * 功能入口
 */
public function run()
{
    $label = $this->initData[0] ?? "" ;
    if(empty($label)) {
        $this->help();
    }
    if($label[0] == "-") {
        switch ($label)
        {
            //可擴展其它短命令
            case "-m":
                $this->shell = "php -m";
                break;
            case "-v":
                echo $this->command." 1.0.1-dev (cli)";
                $this->putFormat(true);
                break;
            case "-h":
            case "-help":
                $this->help();
                break;
            default:
                $this->help();
                break;
        }
    }else{
        if(in_array($label,$this->runCommand)) {
            //可擴展更多shell
            $this->shell = $this->shellMap[$label];
        }else{
            echo "Run "".$this->command." -help" for more information on a command.";
            $this->putFormat(true);
        }
    }
    $this->shell();
}
}
$phpCli = new PHPCli($argv);
$phpCli->run();
exit();

運行: phpCli

運行: phpCli -m

運行:phpCli dsa

感謝閱讀!

文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。

轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/31642.html

相關文章

  • SegmentFault 技術周刊 Vol.40 - 2018,來學習一門新的編程語言吧!

    摘要:入門,第一個這是一門很新的語言,年前后正式公布,算起來是比較年輕的編程語言了,更重要的是它是面向程序員的函數式編程語言,它的代碼運行在之上。它通過編輯類工具,帶來了先進的編輯體驗,增強了語言服務。 showImg(https://segmentfault.com/img/bV1xdq?w=900&h=385); 新的一年不知不覺已經到來了,總結過去的 2017,相信小伙們一定有很多收獲...

    caspar 評論0 收藏0
  • SegmentFault 技術周刊 Vol.40 - 2018,來學習一門新的編程語言吧!

    摘要:入門,第一個這是一門很新的語言,年前后正式公布,算起來是比較年輕的編程語言了,更重要的是它是面向程序員的函數式編程語言,它的代碼運行在之上。它通過編輯類工具,帶來了先進的編輯體驗,增強了語言服務。 showImg(https://segmentfault.com/img/bV1xdq?w=900&h=385); 新的一年不知不覺已經到來了,總結過去的 2017,相信小伙們一定有很多收獲...

    nihao 評論0 收藏0
  • SegmentFault 技術周刊 Vol.40 - 2018,來學習一門新的編程語言吧!

    摘要:入門,第一個這是一門很新的語言,年前后正式公布,算起來是比較年輕的編程語言了,更重要的是它是面向程序員的函數式編程語言,它的代碼運行在之上。它通過編輯類工具,帶來了先進的編輯體驗,增強了語言服務。 showImg(https://segmentfault.com/img/bV1xdq?w=900&h=385); 新的一年不知不覺已經到來了,總結過去的 2017,相信小伙們一定有很多收獲...

    Drummor 評論0 收藏0

發表評論

0條評論

最新活動
閱讀需要支付1元查看
<