PHP命令行交互传参

来自三线的随记

方法1

int $argc

array $argv


方法2

fgets(STDIN)


方法3

getopt('x:y:');


/*php xxx.php -x …… -y …… */