Created
March 24, 2014 05:50
-
-
Save yo-iida/9734838 to your computer and use it in GitHub Desktop.
PHP:CLIでの対話インターフェース
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//================確認用処理待ちロジック================ | |
while(1){ | |
echo "処理続行しますか?\nyes or no: "; | |
// 標準入力から入力待ち | |
$line = trim(fgets(STDIN)); | |
if ($line == "yes") { | |
echo "処理を続行します\n"; | |
break; // 無限ループを抜ける | |
}elseif($line == "no"){ | |
echo "処理を終了します\n"; | |
exit(); | |
}else{ | |
echo "....\n"; | |
} | |
} | |
//================確認用処理待ちロジック================ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment