此问题在此处已有答案:
How do I get PHP errors to display?(31个答案)
三年前就关门了。
更新2:
现在我已经从.php文件中删除了以下内容:
<?php error_reporting( E_ALL ); ?>
我在php.ini中设置了display_erros,如下所示:
显示错误=打开
错误报告在php.ini
中设置为以下值:
错误报告= E_ALL|严格
重新启动Apache后,我仍然没有收到任何错误/警告。
更新1:
我已将php.ini
中的error_reporting从:
错误报告= E_ALL & ~E_已弃用
至
错误报告= E_ALL|严格
之后,我重新启动Apache,例如。
/etc/初始化.d/apache 2重新启动
但该页面仍不会显示任何类型的错误/警告。
原始问题:
下面的脚本生成了一个警告,因为$err在if语句中。为什么这个警告没有显示在Web浏览器的PHP页面上?
我必须查看Apache日志才能看到警告。还有,如果我故意将“insert into”更改为“delete into”,它在PHP页面上不会显示错误。为什么错误不会显示在实际的PHP页面上?
<?php
error_reporting(E_ALL);
?>
<html>
<head>
<title></title>
<link rel="icon" type="image/png" href="favicon.ico">
<?php
if ($_SERVER['REQUEST_METHOD'] == 'POST') {
$err = array();
if (empty( $_POST['display_name']))
$err[] = "display name field is required";
if (empty( $_POST['email']))
$err[] = "email field is required";
if (empty( $_POST['password']))
$err[] = "password field is required";
if (!$err) {
try {
$DBH = new PDO("mysql:host=localhost;dbname=database1", "user", "pass");
$DBH->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
$STH = $DBH->prepare("delete into table1 (display_name, email, password) values ( :display_name, :email, :password )");
$STH->bindParam(':display_name', $_POST['display_name'], PDO::PARAM_STR, 100);
$STH->bindParam(':email', $_POST['email'], PDO::PARAM_STR, 100);
$STH->bindParam(':password', $_POST['password'], PDO::PARAM_STR, 100);
$STH->execute();
$STH = $DBH->prepare("delete into table2 ( username, status, users_id ) values ( :username, :status, :users_id )");
$strStatus = 1;
$STH->bindParam(':username', $_POST['display_name'], PDO::PARAM_STR, 100);
$STH->bindParam(':status', $strStatus, PDO::PARAM_INT, 1);
$STH->bindParam(':users_id', $_POST['referer'], PDO::PARAM_INT, 1);
$STH->execute();
$DBH = null;
}
catch (PDOException $e) {
echo $e->getMessage();
}
header("Location: " . $_SERVER['PHP_SELF']);
exit;
}
else {
foreach ($_POST as $key => $val) {
$form[$key] = htmlspecialchars($val);
}
}
}
else {
$form['display_name'] = $form['email'] = $form['password'] = '';
}
?>
</head>
<body>
<?php foreach($err as $line) { ?>
<div style="error"><?php echo $line; ?></div>
<?php } ?>
<h1>Register</h1>
<form method="post">
Referers id:<br/>
<input type="text" name="referer" /><br/><br/>
Name:<br/>
<input type="text" name="display_name" value="<?php echo $form['display_name']; ?>" /><br/><br/>
Email:<br/>
<input type="text" name="email" value="<?php echo $form['email']; ?>" /><br/><br/>
Password:<br/>
<input type="text" name="password" value="<?php echo $form['password']; ?>" /><br/><br/>
<input type="submit" value="register" />
</form>
</body>
</html>
6条答案
按热度按时间zdwk9cvp1#
可以在
php.ini
或Apache配置文件中关闭显示错误。您可以在脚本中启用它:
您应该会在PHP错误日志中看到相同的消息。
ttygqcqt2#
我能够通过以下代码获得所有错误:
vc9ivgsu3#
直接从 * php.ini * 文件中下载:
对于纯开发,我选择:
另外,不要忘记打开display_errors
然后,在Ubuntu上重新启动Apache服务器:
y0u0uwnf4#
PHP错误可以通过以下任何方法显示:
如需详细信息:
ioekq8ef5#
在
php.ini
上设置以下内容:在PHP页面中,使用适当的过滤器来报告错误。
过滤器可根据需要制作。
j8yoct9x6#
您可以查看详细说明here。
更改日志