gpt4 book ai didi

php - Zend Framework : Failed opening required Zend/Loader. php (include_path ='.:/php/includes')

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:26:09 25 4
gpt4 key购买 nike

PHP Fatal error:  main(): Failed opening required 'Zend/Loader.php' (include_path='.:/php/includes')

我在CentOS上安装了ZF,但是调用的时候遇到这个问题

require_once 'Zend/Loader.php'

我使用的 Zend Framework 版本:1.11.12

我尝试使用以下流程解决此问题:

在库路径上创建符号链接(symbolic link) Zend 框架

ln -s /usr/share/php/Zend .

在库路径上复制 Zend Framework

cp -R /usr/share/php/Zend .

未解决。我该如何解决错误?

最佳答案

错误说明了一切。你当前的 include_path -> (include_path='.:/php/includes')/php/includes 只是您的 php include_path 中的唯一目录。尝试在您的包含路径中添加 Zend 目录,或者像下面这样即时添加:

set_include_path('/path/to/ZendFramework-1.11.12/library/'.get_include_path());
require_once('Zend/Loader.php');

关于php - Zend Framework : Failed opening required Zend/Loader. php (include_path ='.:/php/includes'),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12293107/

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