<small id='TYySP'></small><noframes id='TYySP'>

  • <tfoot id='TYySP'></tfoot>

    1. <legend id='TYySP'><style id='TYySP'><dir id='TYySP'><q id='TYySP'></q></dir></style></legend>
        <bdo id='TYySP'></bdo><ul id='TYySP'></ul>
        <i id='TYySP'><tr id='TYySP'><dt id='TYySP'><q id='TYySP'><span id='TYySP'><b id='TYySP'><form id='TYySP'><ins id='TYySP'></ins><ul id='TYySP'></ul><sub id='TYySP'></sub></form><legend id='TYySP'></legend><bdo id='TYySP'><pre id='TYySP'><center id='TYySP'></center></pre></bdo></b><th id='TYySP'></th></span></q></dt></tr></i><div id='TYySP'><tfoot id='TYySP'></tfoot><dl id='TYySP'><fieldset id='TYySP'></fieldset></dl></div>

        关键字“使用"如何?在 PHP 中工作,我可以用

        时间:2023-09-25
      1. <small id='sc776'></small><noframes id='sc776'>

      2. <legend id='sc776'><style id='sc776'><dir id='sc776'><q id='sc776'></q></dir></style></legend>
        <i id='sc776'><tr id='sc776'><dt id='sc776'><q id='sc776'><span id='sc776'><b id='sc776'><form id='sc776'><ins id='sc776'></ins><ul id='sc776'></ul><sub id='sc776'></sub></form><legend id='sc776'></legend><bdo id='sc776'><pre id='sc776'><center id='sc776'></center></pre></bdo></b><th id='sc776'></th></span></q></dt></tr></i><div id='sc776'><tfoot id='sc776'></tfoot><dl id='sc776'><fieldset id='sc776'></fieldset></dl></div>
        <tfoot id='sc776'></tfoot>

            <tbody id='sc776'></tbody>
          • <bdo id='sc776'></bdo><ul id='sc776'></ul>

                • 本文介绍了关键字“使用"如何?在 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();
                  

                  我知道我可以使用 requireinclude 关键字将文件包含在一个类中:

                  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();
                  

                  但我想在不使用 requireinclude 的情况下导入类.我试图了解 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 中工作,我可以用它导入类吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:PHP ASCII 表库 下一篇:如何使用 PHP 代码而不是 HTML 代码导入/包含 CSS

                  相关文章

                  最新文章

                  1. <legend id='aUDqF'><style id='aUDqF'><dir id='aUDqF'><q id='aUDqF'></q></dir></style></legend>

                    <small id='aUDqF'></small><noframes id='aUDqF'>

                    • <bdo id='aUDqF'></bdo><ul id='aUDqF'></ul>
                    <tfoot id='aUDqF'></tfoot>
                      <i id='aUDqF'><tr id='aUDqF'><dt id='aUDqF'><q id='aUDqF'><span id='aUDqF'><b id='aUDqF'><form id='aUDqF'><ins id='aUDqF'></ins><ul id='aUDqF'></ul><sub id='aUDqF'></sub></form><legend id='aUDqF'></legend><bdo id='aUDqF'><pre id='aUDqF'><center id='aUDqF'></center></pre></bdo></b><th id='aUDqF'></th></span></q></dt></tr></i><div id='aUDqF'><tfoot id='aUDqF'></tfoot><dl id='aUDqF'><fieldset id='aUDqF'></fieldset></dl></div>