gpt4 book ai didi

PHP 在子文件夹中使用 spl_autoload_register 自动加载

转载 作者:行者123 更新时间:2023-12-03 22:54:48 27 4
gpt4 key购买 nike

我的目录结构如下

> Root
> -Admin // admin area
> --index.php // admin landing page, it includes ../config.php
> -classes // all classes
> ---template.php
> ---template_vars.php // this file is used inside template.php as $template_vars = new tamplate_vars();
> -templates // all templates in different folder
> --template1
> -index.php
> -config.php

在我使用过的 config.php 文件中
<?php
.... // some other php code
spl_autoload_register(NULL, FALSE);
spl_autoload_extensions('.php');
spl_autoload_register();

classes\template::setTemplate('template/template1');
classes\template::setMaster('master');
.... // some other php code
?>

我已经设置了正确的命名空间(仅在类中),并在我的 index.php 根目录中访问了类
<?php 

require 'config.php';
$news_array = array('news1', 'news1'); // coming from database

$indexTemplate = new \classes\template('index');
$indexTemplate->news_list = $news_array; // news_list variable inside index template is magically created and is the object of template_vars class
$indexTemplate->render();
?>

到目前为止它工作完美,它呈现模板并填充模板变量,

但是当我在 admin 文件夹中打开索引文件时,它给出了以下错误

Fatal error: Class 'classes\template_vars' not found in /home/aamir/www/CMS/classes/template.php on line 47



知道如何解决这个问题。它适用于 root,但从管理面板内部它不起作用

最佳答案

你必须使用一个技巧:

set_include_path(get_include_path() . PATH_SEPARATOR . '../');

在您包含之前 ../config.php
set_include_path(get_include_path() . PATH_SEPARATOR . __DIR__ . '/');

config.php

关于PHP 在子文件夹中使用 spl_autoload_register 自动加载,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10479922/

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