How does the keyword quot;usequot; work in PHP and can I import classes with it?(关键字“使用如何?在 PHP 中工作,我可以用它导入类吗?)
问题描述
我有一个带有 Resp
类的文件.路径是:
I have a file with a class Resp
. The path is:
C:xampphtdocsOneClassesResp.php
我在这个目录中有一个 index.php
文件:
And I have an index.php
file in this directory:
C:xampphtdocsTwoHttpindex.php
在这个 index.php
文件中,我想实例化一个 Resp
类.
In this index.php
file I want to instantiate a class Resp
.
$a = new Resp();
我知道我可以使用 require
或 include
关键字将文件包含在一个类中:
I know I can use require
or include
keywords to include the file with a class:
require("OneClassesResp.php"); // I've set the include_path correctly already ";C:xampphtdocs". It works.
$a = new Resp();
但我想在不使用 require
或 include
的情况下导入类.我试图了解 use
关键字的工作原理.我尝试了这些步骤,但没有任何效果:
But I want to import classes without using require
or include
. I'm trying to understand how use
keyword works. I tried theses steps but nothing works:
use OneClassesResp;
use xampphtdocsOneClassesResp;
use htdocsOneClassesResp;
use OneClasses;
use htdocsOneClasses; /* nothing works */
$a = new Resp();
它说:
Fatal error: Class 'OneClassesResp' not found in C:xampphtdocsTwoHttpindex.php
关键字use
是如何工作的?我可以用它来导入课程吗?
How does the keyword use
work? Can I use it to import classes?
推荐答案
use
不包含任何内容.它只是将指定的命名空间(或类)导入到当前作用域
use
doesn't include anything. It just imports the specified namespace (or class) to the current scope
如果您希望自动加载类 - 阅读关于自动加载
If you want the classes to be autoloaded - read about autoloading
这篇关于关键字“使用"如何?在 PHP 中工作,我可以用它导入类吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:关键字“使用"如何?在 PHP 中工作,我可以用它导入类吗?
基础教程推荐
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01
- 使用 PDO 转义列名 2021-01-01
- HTTP 与 FTP 上传 2021-01-01
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01
- PHP 守护进程/worker 环境 2022-01-01
- 如何在 XAMPP 上启用 mysqli? 2021-01-01
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01