Table of Contents
回复内容:
Home Backend Development PHP Tutorial namespaces - 关于在ThinkPHP中使用namespace的问题

namespaces - 关于在ThinkPHP中使用namespace的问题

Jun 06, 2016 pm 08:26 PM
php thinkphp

在使用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>
Copy after login
Copy after login

目录组织:

<code>- Application
    - Home
        - Model
            -libs
                -这里是引入的库文件
            -HelloModel.class.php</code>
Copy after login
Copy after login

这是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>
Copy after login
Copy after login

不知道要如何解决这个问题,求助!!!先谢谢各位了!!!

回复内容:

在使用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>
Copy after login
Copy after login

目录组织:

<code>- Application
    - Home
        - Model
            -libs
                -这里是引入的库文件
            -HelloModel.class.php</code>
Copy after login
Copy after login

这是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>
Copy after login
Copy after login

不知道要如何解决这个问题,求助!!!先谢谢各位了!!!

既然你使用了单入口的框架,就不能这样写 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>
Copy after login

如果在前面加上\会从根寻找,如果不加,应该是在上面的namespace里面找。

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

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

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

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

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

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

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

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

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

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

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

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

CakePHP Logging CakePHP Logging Sep 10, 2024 pm 05:26 PM

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

CakePHP Services CakePHP Services Sep 10, 2024 pm 05:26 PM

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

See all articles