Home > Backend Development > PHP Tutorial > php使用命名空间,然后初始化扩展中的类出现的问题

php使用命名空间,然后初始化扩展中的类出现的问题

WBOY
Release: 2016-06-06 20:50:59
Original
940 people have browsed it

目前的情况是我使用PHP扩展编写Test类,然后命名空间Application中一个方法使用这个类:

$test = new Test();

然后就回报错,说是Application\Test类找不到。因为是PHP扩展中的类,所以文件是没有的,这个问题怎么去解决呢?

回复内容:

目前的情况是我使用PHP扩展编写Test类,然后命名空间Application中一个方法使用这个类:

$test = new Test();

然后就回报错,说是Application\Test类找不到。因为是PHP扩展中的类,所以文件是没有的,这个问题怎么去解决呢?

two ways ...

<?php namespace Application;
use Test;

new Test();
Copy after login
<?php namespace Application;

new \Test();
Copy after login
Related labels:
php
source:php.cn
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template