Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在表中有值,如 abc1、abc2、abc3... abcN,我想将此值作为无序列表检索,
我不是专家,所以如果可能的话,请解释一下,我怎样才能在无序列表中得到它。
我想从数据库表中检索数据
我没有代码,但我想像我问的那样做,如果有人可以帮忙,我只需要代码,我有数据库连接..等等,我需要帮助我如何以这种方式获得它(无序列表)来自数据库。
谢谢,
您必须做两件事。
为此,您可以使用,例如。PDO库。
要实现它,您只需要一个函数explode()。
$array = explode(', ', $commaSeparatedData);