PHPのエラーログの目的は何ですか? dredit サンプル php を実行していますが、「doing code」が表示され続けます。
コードは次のとおりです。
if (isset($_GET['code'])) {
error_log('doing code');
/**
* Redeemed authorization codes are stored in the session to prevent
* accidental multiple redemption of the same code causing an exception.
* ie, if a user refreshes their browser when a code is in the URL.
* We need to initialize the array of redeemed authorization codes.
*/
if (!isset($_SESSION['redeemed_codes'])) {
$_SESSION['redeemed_codes'] = array();
}
誰でもこれについて私を助けることができますか? ありがとう!