嵌套集模型 PHP 库
您好,我需要使用嵌套集模型来管理我网站上的产品类别。有谁知道一些好的预构建 PHP 库用于处理 MySQL 中的嵌套集?
Hi I need to use the nested set model to mange product categories on my site. Does anyoune know of some good pre-built PHP libraries for handling nested sets in MySQL?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
你可以尝试“Baobab”,这是我最近发布的一个库。
http://www.sideralis.org/baobab/
You could try "Baobab", it's a library I recently released.
http://www.sideralis.org/baobab/
它有点旧,可以进行一些重构,但我在 PHPClasses.org 上找到了一个 PHP 类“dbtree”,它似乎做得很好 - http://www.phpclasses.org/package/2547-PHP-Manipulate-database-records-in -hierarchical-trees.html
It's a bit old, and could do with some refactoring, but I found a PHP Class "dbtree" on PHPClasses.org, which seems to do a fair job of it - http://www.phpclasses.org/package/2547-PHP-Manipulate-database-records-in-hierarchical-trees.html
您可以使用 PHP ORM 解决方案,例如 Propel 或 Doctrine,它们都支持嵌套套。
You could use a PHP ORM solution like Propel or Doctrine, they both support nested sets.