我有这段代码在我运行它时完全搞砸了。它甚至不会抛出异常。它只会导致服务器错误。
try {
$stmt = $this->database->prepare(
"SELECT * FROM news_posts");
$result = $stmt->execute();
$array = $result->fetch(PDO::FETCH_ASSOC);
print_r($array);
} catch (PDOException $e) {
echo "error?";
}