gpt4 book ai didi

php - 错误调用成员函数 get_results()

转载 作者:行者123 更新时间:2023-11-28 23:19:55 25 4
gpt4 key购买 nike

错误:

Call to a member function get_results() on null in C:\xampp\htdocs\shop\wp-content\plugins\myplugin\viwe.php:9 Stack trace: #0 {main} thrown in C:\xampp\htdocs\shop\wp-content\plugins\myplugin\viwe.php on line

代码

global $wpdb;

$query = $wpdb->get_results('SELECT * FROM test');

文件夹myplugin包含以下两个文件,

index.php

viwe.php

对于文件 viwe.php,代码无法正常工作并失败,

error Call to a member function get_results() on null in C:\xampp\htdocs\shop\wp-content\plugins\myplugin\viwe.php:9 Stack trace: #0 {main} thrown in C:\xampp\htdocs\shop\wp-content\plugins\myplugin\viwe.php on line

但 index.php 正在运行。

最佳答案

在顶部添加这两行。

require_once($_SERVER['DOCUMENT_ROOT'] . $folder . '/wp-config.php');
require_once($_SERVER['DOCUMENT_ROOT'] . $folder . '/wp-load.php');

您需要包含这些文件,以便可以调用函数 get_results()

关于php - 错误调用成员函数 get_results(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42177605/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com