为什么PHP class文件后缀 可以不是.php
程序员文章站
2022-04-27 18:57:28
...
include 'PhpBeautifier.inc';//为什么这个class 是.inc 结尾呢?
$beautify = new PhpBeautifier();
$beautify -> tokenSpace = true;//put space between tokens
$beautify -> blockLine = true;//put empty lines between blocks of code (if, while etc)
$beautify -> optimize = true;//optimize strings (for now), if a double quoted string does not contain variables of special carachters transform it to a single quoted string to save parsing time
$beautify -> file( 'test.php', 'beautified.php' );
?>
https://github.com/easychen/L...
回复内容:
include 'PhpBeautifier.inc';//为什么这个class 是.inc 结尾呢?
$beautify = new PhpBeautifier();
$beautify -> tokenSpace = true;//put space between tokens
$beautify -> blockLine = true;//put empty lines between blocks of code (if, while etc)
$beautify -> optimize = true;//optimize strings (for now), if a double quoted string does not contain variables of special carachters transform it to a single quoted string to save parsing time
$beautify -> file( 'test.php', 'beautified.php' );
?>
https://github.com/easychen/L...
因为他只是标志一个文件而已,后缀你想改成任何合法的字符都可以(哪怕去掉后缀)。
PHP 在内部执行过程大概是这样:
找到文件名或路径对应的文件;
读取文件的内容;
将内容解析为 PHP 代码并执行。
所以,这和后缀是什么没太多关系,这里的后缀只是为了标识此文件的作用而已,相似的还有 XXX.tpl(模板)等
include可以包含任何类型文件,只要有权限读,比如下面这样
嗯,谢邀。前面回答都对,所以要注意include/require的安全性。
谢邀,刚看到这个问题我愣了下,include 指令用于将指定文件引入并运行(与require相同)。
require
include
什么类型的文本文件都可以,被引用的文件里面的内容会当做php代码执行(有
你可以require/include一个txt、html、js、css等,有的PHP木马利用这一点绕过安全工具的检测。
推荐阅读
-
为什么facebook的hiphop要把php转换成了C++而不是把php改成编译型的语言,直接执行编译后的文件不是更快么?
-
菜鸟问些很基础的问题,php是不是我代码保存为php文件然后一个单个的php文件传到空间可以吗?多谢!!
-
本地的php文件传到服务器上为什么火狐可以浏览IE却是无法显示网页,该怎么处理
-
初学者问些很基础的有关问题,php是不是小弟我代码保存为php文件然后一个单个的php文件传到空间可以吗?谢谢!
-
本地的php文件传到服务器上为什么火狐可以浏览IE却是无法显示网页,该怎么处理
-
菜鸟问些很基础的问题,php是不是我代码保存为php文件然后一个单个的php文件传到空间可以吗?多谢!!
-
php中$_GET和$_POST函数。值不是提交到php文件么,我咋在地址栏中看不到php后缀名?
-
文件上传 - php上传图片能直接用文件后缀判断类型吗?为什么,给个详细例子
-
为什么PHP class文件后缀 可以不是.php
-
文件上传 - php上传图片能直接用文件后缀判断类型吗?为什么,给个详细例子