是否可以将PHP XML Exporter转换为Wordpress插件?

时间:2014-12-11 13:03:58

标签: php xml wordpress

我使用mysql1创建了一个带有表单的PHP脚本,可用于将数据从数据库导出到XML文件。我的问题是我可以将它用作Wordpress插件吗?

我面临的最大问题是wordpress使用$ wpdb与数据库进行交互,而我一直在使用PHP MySQL函数。有没有办法将PHP脚本转换为wordpress插件?

1 个答案:

答案 0 :(得分:0)

As you know, mysql_fetch_assoc() processes the results returned by mysql_query(). $wpdb class methods typically return results of a query to the wordpress database similar to what mysql_query() would do. $wpdb class methods do not process such results as mysql_fetch_assoc() would do, so there is no true equivalent.

我通常使用与您的示例类似的$ wpdb查询的结果:

foreach($结果为$ row){     //这里有代码来处理db结果。