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.
所以很多人已经知道 Wordpress 中的 $wpdb 类不能处理涉及 NULL 值的插入和更新。这是一个令人头疼的问题,似乎没有很好的解决方法。
所以我想知道在 Wordpress 中插入/更新表格的下一个最佳方法是什么?由于准备好的语句,我喜欢 WPDB,所以我希望有一些东西可以让我继续这样做。不幸的是,没有 PDO 支持?
有什么建议么?
这是Null值的解决方案,只需class通过扩展wpdb类创建一个新的并使用两个新insert和update函数,为此,您可以db.php在目录中创建一个文件wp-content并将此内容放入文件中。
Null
class
wpdb
insert
update
db.php
wp-content
未经测试,但您可以尝试一下。