PHP面向对象之将数据库的查询结果序列化成json格式

<?php
class link_mysql{
	private $host,$uid,$pwd,$db,$link,$res;
	function link_mysql($_host,$_uid,$_pwd,$_db){
		$this->host = $_host;
		$this->uid = $_uid;
		$this->pwd = $_pwd;
		$this->db = $_db;
		$this->link = mysql_connect($this->host,$this->uid,$this->pwd);
		mysql_select_db($this->db,$this->link);
	}
	function exec_sql($sql){
		//if you use insert sentence,then you must open your link;
		$res = mysql_query($sql);
		return $res;
	}
}
$obj_link = new link_mysql('localhost','***','***','website');
$res = $obj_link->exec_sql("select * from userinfo");
$str = "[";
while($rows = mysql_fetch_assoc($res)){
	$str = $str."{name:$rows[name],password:$rows[password],age:$rows[age]},";
}
$str = rtrim($str,',') ."]";
echo $str;
?>

转载于:https://www.cnblogs.com/xtyang/p/3207422.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值