namespaces - 关于在ThinkPHP中使用namespace的问题
在使用ThinkPHP开发过程中,因为需要使用一个外部库,便直接在Model文件夹下直接新建了一个libs文件夹,将库文件放在里面,然后在Model中require_once里面的文件。
但是ThinkPHP框架Model中使用了namespace,而这个库里面同样使用了namespace,现在程序似乎只在Model引入的namespace中去搜寻库里面的use,所以一直报错:
<code>Class 'Falcon\Model\Thrift\Transport\TSocket' not found 错误位置 FILE: D:\wamp\www\Application\Home\Model\HelloModel.class.php LINE: 165</code>
目录组织:
<code>- Application - Home - Model -libs -这里是引入的库文件 -HelloModel.class.php</code>
这是HelloModel.class.php文件
<code><?php namespace Home\Model; require_once('libs/thrift_require.php'); use Thrift\Protocol\TBinaryProtocol; use Thrift\Transport\TSocket; use Thrift\Transport\TFramedTransport; use Hbase\HbaseClient; // 实例化代码: $socket = new Thrift\Transport\TSocket($host, $port);</code></code>
不知道要如何解决这个问题,求助!!!先谢谢各位了!!!
回复内容:
在使用ThinkPHP开发过程中,因为需要使用一个外部库,便直接在Model文件夹下直接新建了一个libs文件夹,将库文件放在里面,然后在Model中require_once里面的文件。
但是ThinkPHP框架Model中使用了namespace,而这个库里面同样使用了namespace,现在程序似乎只在Model引入的namespace中去搜寻库里面的use,所以一直报错:
<code>Class 'Falcon\Model\Thrift\Transport\TSocket' not found 错误位置 FILE: D:\wamp\www\Application\Home\Model\HelloModel.class.php LINE: 165</code>
目录组织:
<code>- Application - Home - Model -libs -这里是引入的库文件 -HelloModel.class.php</code>
这是HelloModel.class.php文件
<code><?php namespace Home\Model; require_once('libs/thrift_require.php'); use Thrift\Protocol\TBinaryProtocol; use Thrift\Transport\TSocket; use Thrift\Transport\TFramedTransport; use Hbase\HbaseClient; // 实例化代码: $socket = new Thrift\Transport\TSocket($host, $port);</code></code>
不知道要如何解决这个问题,求助!!!先谢谢各位了!!!
既然你使用了单入口的框架,就不能这样写 require_once('libs/thrift_require.php');
1.你可以尝试改成这样 require_once('./Application/Home/Model/libs/thrift_require.php');
require_once 一定要写成绝对路径.
2.你的libs文件目录 建立错了,因为你建在了Model文件夹下面,这样就破坏了框架本身的目录结构,Thinkphp在自动导入model里的class的时候是根据命名空间名称导入的,错误修改: 在model平级目录建立libs文件夹,将第三方库的每个class文件加上自己的命名空间.自定义的类,如果没有命名空间是无法自动加载的.
不要在框架的目录下面建自己的目录,不用破坏框架的目录结构!!!
ps:我经常看你的个人博客,发现有几篇写的非常好的文章
已经解决,只需要修改实例化代码为:
<code>$socket = new \Thrift\Transport\TSocket($host, $port);</code>
如果在前面加上\
会从根寻找,如果不加,应该是在上面的namespace
里面找。

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

Validator can be created by adding the following two lines in the controller.

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

Logging in CakePHP is a very easy task. You just have to use one function. You can log errors, exceptions, user activities, action taken by users, for any background process like cronjob. Logging data in CakePHP is easy. The log() function is provide

This chapter deals with the information about the authentication process available in CakePHP.
