php获取mysql enum参数_PHP MySQL 读取数据

该代码示例展示了如何使用PDO连接到MySQL数据库,执行SQL查询,并通过RecursiveIteratorIterator遍历结果。代码中创建了一个TableRows类,用于格式化输出数据。最后,它处理了可能出现的PDO异常并关闭了数据库连接。
摘要由CSDN通过智能技术生成

echo “

echo “

IdFirstnameLastnameEmailReg date”;

class TableRows extends RecursiveIteratorIterator {

function __construct($it) {

parent::__construct($it, self::LEAVES_ONLY);

}

function current() {

return “

” . parent::current(). “”;

}

function beginChildren() {

echo “

”;

}

function endChildren() {

echo “

” . ”

“;

}

}

$servername = “localhost”;

$username = “username”;

$password = “password”;

$dbname = “myDBPDO”;

try {

$conn = new PDO(“mysql:host=$servername;dbname=$dbname”, $username, $password);

$conn->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);

$stmt = $conn->prepare(“SELECT * FROM MyGuests”);

$stmt->execute();

// 设置结果集为关联数组

$result = $stmt->setFetchMode(PDO::FETCH_ASSOC);

foreach(new TableRows(new RecursiveArrayIterator($stmt->fetchAll())) as $k=>$v) {

echo $v;

}

$dsn = null;

}

catch(PDOException $e)

{

echo “Error: ” . $e->getMessage();

}

$conn = null;

echo “

”;

?>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值