mysql 表的 php 代码生成器
这是我第 N 次必须编写非常相似的代码来使用 php/phpmyadmin/mysql 更新/编辑/删除表中的记录。
我的表有一些一对多关系和多对多关系 (如用户、书籍、用户手册表)
是否有用于此类事物的生成器?我怎样才能加快这个“无聊”和“重复”的任务?
意见
It is the Nth time I have to write versyy similar code to update/edit/remove records from tables using php/phpmyadmin/mysql.
My tables has some 1toMany relations and manyToMany relations
(like users, books , userbooks tables)
Is there a generator for these kind of things ? How could I speed up this "boring" and "repetitive" task ?
reagrds
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用迁移管理器: https://github.com/search?type=Everything&language=PHP&q=migration&repo=&langOverride=&x=0&y=0&start_value=1
完整的框架更好,但这会让你更快地开始。
use a migration manager: https://github.com/search?type=Everything&language=PHP&q=migration&repo=&langOverride=&x=0&y=0&start_value=1
a full on framework is better, but this will get you started quicker.
您可能会对
phpscaffold
感兴趣。The
phpscaffold
might interest you.