gpt4 book ai didi

php oop 和 mysql 查询

转载 作者:可可西里 更新时间:2023-11-01 07:54:41 25 4
gpt4 key购买 nike

我正在尝试创建一个查询数组的函数,然后我将能够调用单独的值。在这里,我想你会明白我想做什么。除了我是一个完全的初学者。

class Posts{

var $title;
var $author;

public function querySinglePost($value){

$post = mysql_fetch_array(mysql_query("select * from posts where id=$value"));
$this->title = $post['title'];
$this->author = $post['author'];

}


}

如何将数组值分配给类中的变量,然后在我的普通 php 脚本/ View 中调用它们?谢谢

最佳答案

看看mysql_fetch_object .我还建议将该函数设为静态,它只会返回创建的对象。像这样:

class Posts{

var $title;
var $author;

public static function querySinglePost($value){

return mysql_fetch_object(
mysql_query("select * from posts where id=$value"),
__CLASS__);

}

}

$post = Posts::querySinglePost($value);
$a = $post->title;
//...

关于php oop 和 mysql 查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5353665/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com