php pdo 错误

<?phpheader("Content-type:text/html;charset=utf-8");$url="mysql:host=localhost;dbname... <?php
header("Content-type: text/html; charset=utf-8");

$url = "mysql:host=localhost;dbname=test";

$user = "root";

$pwd = "root";

$conn = new PDO($url,$user,$pwd);

$conn->query("set names utf8");

function d1($sql){
$st = $conn->query($sql);
$result = $st->fetch();
echo $result[0];

}
报错:Call to a member function query() on a non-object in 这一行$st = $conn->query($sql);
PDO初学,应该怎么修改
展开
 我来答
捌零老陈
推荐于2016-10-21 · TA获得超过727个赞
知道大有可为答主
回答量:1414
采纳率:100%
帮助的人:783万
展开全部
这和PDO没有关系,你的$conn是全局变量
你在函数内部使用全局变量,这样能调用就是怪事了
function d1($sql){
global $conn;
$st = $conn->query($sql);
$result = $st->fetch();
echo $result[0];
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式