我正在调试我的共享主机上安装的php系统(linux,cpanel,php 5.2)。我发现我遇到的问题是在php文件中的一个函数内。我想看看该文件执行时所有变量的值是什么。
我尝试使用mail()将变量值邮寄给自己,但它没有用。 我也尝试了错误功能,以便我可以读取错误日志文件,但是我的主机中没有创建文件,或错误文件中没有消息。我尝试了以下错误功能。
error_log("Err!", 0);
error_log("Err", 1,"operator@example.com");
error_log("Err", 3, "/my-errors.log");
我使用的是namecheap的共享主机,它不提供所有功能,也不提供对所有日志的访问权限。
任何想法如何检查该特定函数中发生的事情,以及执行时间中变量的值是什么?
非常感谢如果有帮助,有问题的函数如下:
/**
* Reset a user's password
* @param $args array first param contains the username of the user whose password is to be reset
*/
function resetPassword($args, &$request) {
$this->validate();
$this->setupTemplate($request);
$site =& $request->getSite();
$oneStepReset = $site->getSetting('oneStepReset') ? true : false;
$username = isset($args[0]) ? $args[0] : null;
$userDao =& DAORegistry::getDAO('UserDAO');
$confirmHash = $request->getUserVar('confirm');
if ($username == null || ($user =& $userDao->getByUsername($username)) == null) {
$request->redirect(null, null, 'lostPassword');
}
$templateMgr =& TemplateManager::getManager();
$hash = Validation::generatePasswordResetHash($user->getId());
if ($hash == false || $confirmHash != $hash) {
$templateMgr->assign('errorMsg', 'user.login.lostPassword.invalidHash');
$templateMgr->assign('backLink', $request->url(null, null, 'lostPassword'));
$templateMgr->assign('backLinkLabel', 'user.login.resetPassword');
$templateMgr->display('common/error.tpl');
} else if (!$oneStepReset) {
// Reset password
$newPassword = Validation::generatePassword();
if ($user->getAuthId()) {
$authDao =& DAORegistry::getDAO('AuthSourceDAO');
$auth =& $authDao->getPlugin($user->getAuthId());
}
if (isset($auth)) {
$auth->doSetUserPassword($user->getUsername(), $newPassword);
$user->setPassword(Validation::encryptCredentials($user->getId(), Validation::generatePassword())); // Used for PW reset hash only
} else {
$user->setPassword(Validation::encryptCredentials($user->getUsername(), $newPassword));
}
$user->setMustChangePassword(1);
$userDao->updateObject($user);
// Send email with new password
import('classes.mail.MailTemplate');
$mail = new MailTemplate('PASSWORD_RESET');
$this->_setMailFrom($request, $mail, $site);
$mail->assignParams(array(
'username' => $user->getUsername(),
'password' => $newPassword,
'siteTitle' => $site->getLocalizedTitle()
));
$mail->addRecipient($user->getEmail(), $user->getFullName());
$mail->send();
$templateMgr->assign('pageTitle', 'user.login.resetPassword');
$templateMgr->assign('message', 'user.login.lostPassword.passwordSent');
$templateMgr->assign('backLink', $request->url(null, $request->getRequestedPage()));
$templateMgr->assign('backLinkLabel', 'user.login');
$templateMgr->display('common/message.tpl');
} else {
import('classes.user.form.LoginChangePasswordForm');
$passwordForm = new LoginChangePasswordForm($confirmHash);
$passwordForm->initData();
if (isset($args[0])) {
$passwordForm->setData('username', $username);
}
$passwordForm->display();
}
}
答案 0 :(得分:0)
我会在函数末尾使用var_dump,就像这样。将为您提供所有数据,如果您将其包装在标签中,它看起来更好。
echo "<pre>";
var_dump(get_defined_vars());
echo "</pre>";
或者你的$ this var。