Php 编码点火器中的错误

Php 编码点火器中的错误,php,sql,xampp,codeigniter-3,Php,Sql,Xampp,Codeigniter 3,这些是错误 Warning: include(C:\xampp\htdocs\test\application\views\errors\html\error_php.php): failed to open stream: No such file or directory in C:\xampp\htdocs\test\system\core\Exceptions.php on line 268 Warning: include(): Failed opening 'C:\xampp\ht

这些是错误

Warning:
include(C:\xampp\htdocs\test\application\views\errors\html\error_php.php):
failed to open stream: No such file or directory in
C:\xampp\htdocs\test\system\core\Exceptions.php on line 268

Warning: include(): Failed opening
'C:\xampp\htdocs\test\application\views\errors\html\error_php.php' for
inclusion (include_path='C:\xampp\php\PEAR') in
C:\xampp\htdocs\test\system\core\Exceptions.php on line 268

Warning:
include(C:\xampp\htdocs\test\application\views\errors\html\error_php.php):
failed to open stream: No such file or directory in
C:\xampp\htdocs\test\system\core\Exceptions.php on line 268

Warning: include(): Failed opening
'C:\xampp\htdocs\test\application\views\errors\html\error_php.php' for
inclusion (include_path='C:\xampp\php\PEAR') in
C:\xampp\htdocs\test\system\core\Exceptions.php on line 268
这是控制器->

<?php 

defined('BASEPATH') OR exit('No direct script access allowed');
#require APPPATH . '/libraries/REST_Controller.php';
class Getdetails extends CI_Controller #REST_Controller
{
    public function __construct()
    {
        parent::__construct();
        $this->load->model('Getusermodel');
        $this->load->helper('Utility_helper');
    }
    // insert user data from the api 
    public function insert_user_details()
    {
        //curl call for getting user details
        $url_user = "https://jsonplaceholder.typicode.com/users";
        $user_array = curlblock($url_user);
        //print_r($user_array);
        $userw_array=array();
        foreach ($user_array as $key => $value) 
        {

            if($key <= 4)
            {
                $usrpld=array("id" => $value['id'] ,
                                "name" => $value['name'],
                                "username" => $value['username'],
                                "email" => $value['email'],
                                "phone" => $value['phone'],
                                );
                array_push($userw_array,$usrpld);
            }

        }
        print_r($userw_array);
    }

}
<?php 

/**
* 
*/
class Getusermodel extends CI_Model
{

    public function __construct()
    {
        parent::__construct();
        $this->load->database();
    }

    public function insert_user(array $payload)
    {
        {


        $this->db->where('id',$payload['id']);
        $query=$this->db->get('userdetails');
        $result=$query->result();

        }
        $num_rows=$query->num_rows();

        if($num_rows <=1)
        {
            //insert
            $this->db->insert('userdetails',$payload);
        }
        else
        {
            //update
            $this->db->where('id', $payload["id"]);
            $this->db->update("userdetails", array('usrpld' => $payload["userdetails"]));
        }

    }

}

请检查文件错误\u php.php。如果它存在并且具有适当的权限。

这些文件存在吗?这个问题似乎非常类似,请检查视图中是否有“错误”文件夹。