Home > PHP Framework > ThinkPHP > body text

Five ways to use import in Thinkphp (with code examples)

藏色散人
Release: 2021-12-20 12:00:03
forward
2295 people have browsed it

The following thinkphp framework tutorial column will introduce you to the five usage methods of import in thinkphp. I hope it will be helpful to friends in need!

Attached below are several introductions to how to use import

1. Usage method one

	import('@.Test.Translate');
	@,表示项目根文件夹。假定根文件夹是:App/
	导入类库的路径是:App/Lib/Test/Translate.class.php
	结论:import('@')是相对于项目文件夹的Lib文件夹而言
Copy after login

2. Method 2

	import('Think.Test.Translate');
	Think,表示系统根文件夹。
Copy after login

3. Method 3

	import('ORG.Test.Translate'); 
	或
	import('COM.Test.Translate'); 
	ORG, 第三方公共类库文件夹
	COM, 企业公共类库文件夹
	两种写法都是相对于./ThinkPHP/Extend/Library/ 而言。
	导入类库的路径是:./ThinkPHP/Extend/Library/ORG/Test/Translate.class.php
	或
	导入类库的路径是:./ThinkPHP/Extend/Library/COM/Test/Translate.class.php

	结论:import('ORG')或import('COM')是相对于系统扩展类库文件夹而言(./ThinkPHP/Extend/Library/)
Copy after login

4. Method 4

	import('Blog.Test.Translate'); 
	这样的写法既不是@。Think的写法,有不是ORG。COM的写法。会被当作分组的项目文件夹来处理。
	解析结果是:App/../Blog/Lib/Test/Translate.class.php
	结论:第四种写法,是相对于分组项目文件夹的Lib文件夹而言的写法。
Copy after login

5. Method 5

import also supports alias import. To use alias import, first define the alias file. Create alias.php in the project configuration folder to define the class library aliases that need to be used in the project.

         return array(
              'page' =>  LIB_PATH.'Common/page.class.php',
         );

         //这样使用就可以
         import('page');
Copy after login

Recommended: "The latest 10 thinkphp video tutorials"

The above is the detailed content of Five ways to use import in Thinkphp (with code examples). For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:cnblogs.com
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