Importing class without namespace to namespaced class(将没有命名空间的类导入命名空间类)
问题描述
我有一个类,它包括 Smarty,但我的类使用命名空间测试,Smarty 不使用命名空间.如何包含 Smarty,而不将命名空间写入 smarty 文件(它有许多系统插件)
I have a some class, it include Smarty, but my class use namespace test, Smarty don't use namespaces. How include Smarty, without writing namespaces into smarty files (it has many system plugins)
import "smarty/Smarty.php"
class testik
{
public function __construct ()
{
$smarty = new Smarty();
}
}
<?php
class Smarty
{
//somcode
}
Smarty 有自动加载器类并包含它的插件,插件也没有命名空间.
Smarty has autoloader class and include its plugins, plugins haven't namespaces too.
推荐答案
告诉你的命名空间代码它在全局命名空间中:
Tell your namespaced code it's in the global namespace:
$smarty = new Smarty();
另外导入Docs 以这种方式工作:
Additionally importingDocs works this way:
use Smarty;
然后您可以按原样使用您的代码:
Then you can use your code as it was:
$smarty = new Smarty();
另见:如何使用php的root"命名空间?.
这篇关于将没有命名空间的类导入命名空间类的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:将没有命名空间的类导入命名空间类
基础教程推荐
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01
- 超薄框架REST服务两次获得输出 2022-01-01
- 在多维数组中查找最大值 2021-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01