为了账号安全,请及时绑定邮箱和手机立即绑定

封装一个php函数,能实现sql语句查询表里面的内容的功能,在调用函数就能执行?

封装一个php函数,能实现sql语句查询表里面的内容的功能,在调用函数就能执行?

犯罪嫌疑人X 2018-11-26 16:06:09
例如把这短代码封装成一个函数$sql="select*fromuser";$result=mysql_query($sql);$arr=array();while($rows=mysql_fetch_assoc($result)){$arr[]=$rows;}print_r($arr);...
查看完整描述

1 回答

?
猛跑小猪

TA贡献1858条经验 获得超8个赞

function getdata(){
$sql="select*from user";
$result=mysql_query($sql);
$arr=array();
while($rows=mysql_fetch_assoc($result)) {
$arr[]=$rows;
}
return $arr;
}

$dataList = getdata();

查看完整回答
反对 回复 2018-12-11
  • 1 回答
  • 0 关注
  • 637 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信