gpt4 book ai didi

php - DDBB 结构,以便我可以管理播放列表 - 当前、上一个、下一个

转载 作者:行者123 更新时间:2023-11-29 14:53:01 24 4
gpt4 key购买 nike

现在我有:

Table playlist (id, name, id_user,many_items,last_item_used,...)

table playlist_map (id, id_user, id_item,position...)

我想知道,这足以让用户从播放列表中添加/删除项目,并从播放列表加载上一个和下一个项目吗?

或者我应该改变我的计划? (我已经完成了 50% PHP,仍然没有问题,但我有点有这种感觉..)

提前致谢:P

我已经完成了播放列表插入/编辑/删除,现在我要做的是:

class playlist_item{

protected $id;
protected $id_item;
protected $nombre;
protected $url;
protected $id_playlist;
protected $position;


function __construct($id) {



}

function get_what($what){
if($what == 'next'){

}else if($what == 'prev'){

}else if($what == 'last'){

}else if($what == 'first'){

}else if($what == 'current'){

}

}




}

最佳答案

我想你有一个类播放列表,你在其中进行了插入/编辑/删除。那么,为什么要在类 playlist_item 中编写 get_what 方法呢?将其放入类(class)播放列表会更合适吗? (因为,我也认为,您的意图是 get_what 方法返回一个 playlist_item 对象实例)。

关于php - DDBB 结构,以便我可以管理播放列表 - 当前、上一个、下一个,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5334138/

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