gpt4 book ai didi

php - 复杂对象上的 mysql_fetch_object

转载 作者:行者123 更新时间:2023-11-29 06:22:00 25 4
gpt4 key购买 nike

假设我有以下数据库结构

Table: book
id | title | ...

Table: author
id | name | ...

Table: bookAuthor
id | bookid | authorid

在 PHP 中我有以下对象

class Book {
var $id;
var $title;
var $authors = array();

function Book() {}
}

class Author {
var $id;
var $name;

function Author(){}
}

现在,是否可以使用 mysqli_fetch_object 检索包含作者作为作者对象数组的图书对象?

如果可能的话,我很确定您需要基本的内部联接查询

SELECT * FROM tblbook INNER JOIN tblbookauthor on ... (wel you get the point)

可能吗?

谢谢!

最佳答案

您正在寻找的是某种 Active Record 系统。它超出了 PHP 的正常范围,但存在此类功能的第三方实现。举例来说:AdoDB

关于php - 复杂对象上的 mysql_fetch_object,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2782009/

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