在浏览器中使用CLI

时间:2018-11-01 13:27:02

标签: php get readline

如何在浏览器中通过$ _GET方法而不是readline()使用以下代码

$MadelineProto->phone_login(readline('Enter your phone number: '));
$authorization = $MadelineProto->complete_phone_login(readline('Enter the 
phone code: '));
if ($authorization['_'] === 'account.password') {
$authorization = $MadelineProto->complete_2fa_login(readline('Please enter 
your password (hint '.$authorization['hint'].'): '));
}
if ($authorization['_'] === 'account.needSignup') {
$authorization = $MadelineProto->complete_signup(readline('Please enter your 
first name: '), readline('Please enter your last name (can be empty): '));
}

当我使用$ _GET时,会有很多问题 例如它发送代码几次或...

0 个答案:

没有答案