


Commonly used system constants and system variables in thinkphp
This article mainly introduces the commonly used system constants and system variables in thinkphp. It has certain reference value. Now I share it with you. Friends in need can refer to it
----------------------------------------模板中使用的系统变量和常量---------------------------------------- (1)系统变量:在模板中输出系统变量:包括server、env、session、post、get、request、cookie {$Think.server.script_name} // 输出$_SERVER变量 {$Think.session.session_id|md5} // 输出$_SESSION变量 {$Think.get.pageNumber} // 输出$_GET变量 {$Think.cookie.name} // 输出$_COOKIE变量 以上方式还可以写成: {$_SERVER.script_name} // 输出$_SERVER变量 {$_SESSION.session_id|md5} // 输出$_SESSION变量 {$_GET.pageNumber} // 输出$_GET变量 {$_COOKIE.name} // 输出$_COOKIE变量 系统常量 :使用$Think.const 输出 注意:server、cookie、config不区分大小写,但是变量区分大小写。例如: {$Think.server.script_name}和{$Think.SERVER.script_name}等效 SESSION 、COOKIE还支持二维数组的输出 例如: {$Think.CONFIG.user.user_name} {$Think.session.user.user_name} 系统不支持三维以上的数组输出。 (2)语言变量:输出项目的当前语言定义值 {$Think.lang.page_error} {$Think.const.MODULE_NAME} 或者直接使用 {$Think.MODULE_NAME} (3)特殊变量 :由ThinkPHP系统内部定义的常量 {$Think.version} //版本 {$Think.now} //现在时间 {$Think.template|basename} //模板页面 {$Think.LDELIM} //模板标签起始符号 {$Think.RDELIM} //模板标签结束符号 (4)配置参数 :输出项目的配置参数值 {$Think.config.db_charset} 输出的值和 C('db_charset') 的结果是一样的。 ----------------------------------------Action中使用的系统常量 ---------------------------------------- THINK_PATH // ThinkPHP 系统目录 APP_PATH // 当前项目目录 APP_NAME // 当前项目名称 MODULE_NAME //当前模块名称 ACTION_NAME // 当前操作名称 TMPL_PATH // 项目模版目录 LIB_PATH // 项目类库目录 CACHE_PATH // 项目模版缓存目录 CONFIG_PATH //项目配置文件目录 LOG_PATH // 项目日志文件目录 LANG_PATH // 项目语言文件目录 TEMP_PATH //项目临时文件目录 PLUGIN_PATH // 项目插件文件目录 VENDOR_PATH // 第三方类库目录 DATA_PATH // 项目数据文件目录 IS_APACHE // 是否属于 Apache IS_IIS //是否属于 IIS IS_WIN //是否属于Windows 环境 IS_LINUX //是否属于 Linux 环境 IS_FREEBSD //是否属于 FreeBsd 环境 NOW_TIME // 当前时间戳 MEMORY_LIMIT_ON // 是否有内存使用限制 OUTPUT_GZIP_ON // 是否开启输出压缩 MAGIC_QUOTES_GPC // MAGIC_QUOTES_GPC THINK_VERSION //ThinkPHP 版本号 LANG_SET // 浏览器语言 TEMPLATE_NAME //当前模版名称 TEMPLATE_PATH //当前模版路径 __ROOT__ // 网站根目录地址 __APP__ // 当前项目(入口文件)地址 __URL__ // 当前模块地址 __ACTION__ // 当前操作地址 __SELF__ // 当前 URL 地址 TMPL_FILE_NAME //当前操作的默认模版名(含路径) WEB_PUBLIC_URL //网站公共目录 APP_PUBLIC_URL //项目公共模版目录 ---------------------------------------- 模板中使用的系统常量 ---------------------------------------- __ROOT__ // 网站根目录地址 __APP__ // 当前项目(入口文件)地址 __URL__ // 当前模块地址 __ACTION__ // 当前操作地址 __SELF__ // 当前 URL 地址 __PUBLIC__ // 网站公共目录 ../Public (不区分大小写) // 项目公共模版目录 注:当我们使用常量时,在模板被加载后在浏览器查看源码,我们观察某些使用了常量的URL,会发现一个现象,看不到服务器的ip地址,URL是从项 目名开始的,那为什么能正确访问对应的控制器呢?实际上这是浏览器给我们开了一个玩笑,当我们将鼠标移动到该URL上,单击右键,复制源码中的 URL,粘贴到别的地方,服务器的ip就会显示出来了,可见服务器ip是被包含进了该URL中使用的常量的。 ---------------------------------------- 自定义常量 ---------------------------------------- 在项目文件夹 (如:Home) 中的Common文件夹下新建common.php 加入如下语句: define('XXX', XXX); //第一个参数是常量名,第二个参数是常量值
Related recommendations:
Usage of volist tag in Thinkphp
##
The above is the detailed content of Commonly used system constants and system variables in thinkphp. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics











JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

Static binding (static::) implements late static binding (LSB) in PHP, allowing calling classes to be referenced in static contexts rather than defining classes. 1) The parsing process is performed at runtime, 2) Look up the call class in the inheritance relationship, 3) It may bring performance overhead.

What are the magic methods of PHP? PHP's magic methods include: 1.\_\_construct, used to initialize objects; 2.\_\_destruct, used to clean up resources; 3.\_\_call, handle non-existent method calls; 4.\_\_get, implement dynamic attribute access; 5.\_\_set, implement dynamic attribute settings. These methods are automatically called in certain situations, improving code flexibility and efficiency.

PHP and Python each have their own advantages, and choose according to project requirements. 1.PHP is suitable for web development, especially for rapid development and maintenance of websites. 2. Python is suitable for data science, machine learning and artificial intelligence, with concise syntax and suitable for beginners.

PHP is widely used in e-commerce, content management systems and API development. 1) E-commerce: used for shopping cart function and payment processing. 2) Content management system: used for dynamic content generation and user management. 3) API development: used for RESTful API development and API security. Through performance optimization and best practices, the efficiency and maintainability of PHP applications are improved.

PHP is a scripting language widely used on the server side, especially suitable for web development. 1.PHP can embed HTML, process HTTP requests and responses, and supports a variety of databases. 2.PHP is used to generate dynamic web content, process form data, access databases, etc., with strong community support and open source resources. 3. PHP is an interpreted language, and the execution process includes lexical analysis, grammatical analysis, compilation and execution. 4.PHP can be combined with MySQL for advanced applications such as user registration systems. 5. When debugging PHP, you can use functions such as error_reporting() and var_dump(). 6. Optimize PHP code to use caching mechanisms, optimize database queries and use built-in functions. 7

PHP is still dynamic and still occupies an important position in the field of modern programming. 1) PHP's simplicity and powerful community support make it widely used in web development; 2) Its flexibility and stability make it outstanding in handling web forms, database operations and file processing; 3) PHP is constantly evolving and optimizing, suitable for beginners and experienced developers.

In PHP8, match expressions are a new control structure that returns different results based on the value of the expression. 1) It is similar to a switch statement, but returns a value instead of an execution statement block. 2) The match expression is strictly compared (===), which improves security. 3) It avoids possible break omissions in switch statements and enhances the simplicity and readability of the code.
