我厌倦了在每个脚本中连接数据库我需要更多的 OOP 方法来获取数据库结果。例如 wordpress 使用 wpdb 类来获取结果。
这就是 wordpress 获取数据的方式
<?php $posts = $wpdb->get_results("SELECT ID, post_title FROM $wpdb->posts WHERE post_status = 'publish'
AND post_type='post' ORDER BY comment_count DESC LIMIT 0,4")
?>
我如何也可以使用任何类或函数创建相同的功能
并在我的脚本中使用它
谢谢