Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
この方法でコンソールで PHP スクリプトを呼び出す場合:
phpscript.php --param1=value --param2=value2
どのようにしてparam1値を取得できparam2ますか?
param1
param2
$argvスクリプトで使用できますが、使いやすいgetopt()です。
$argv
getopt()
$options = getopt("", array("param1:", "param2:"));