本文目录一览:
- 1、PHP 没有后缀名的文件怎么获取后缀
- 2、apache php 配置无后缀文件也可以解析
- 3、如何让非.php后缀名的文件,以php脚本的形式
- 4、如何让非.php后缀名的文件,以php脚本的形式运行
PHP 没有后缀名的文件怎么获取后缀
我给你思路吧
首先没有后缀,那只能通过文件头来判断了
function getFileType($file){
if(!empty($file)){
//打开文件
$filehead = fopen($file,'r');
//读取文件2字节
$bin = fread($filehead, 2);
fclose($filehead);
//二进制字符串对数据进行解包
$data = unpack('C2chars', $bin);
$type_code = intval($data['chars1'].$data['chars2']);
switch ($type_code) {
case 7790:
$fileType = 'exe';
break;
case 7784:
$fileType = 'midi';
break;
case 8075:
$fileType = 'zip';
break;
case 8297:
$fileType = 'rar';
break;
case 255216:
$fileType = 'jpg';
break;
case 7173:
$fileType = 'gif';
break;
case 6677:
$fileType = 'bmp';
break;
case 13780:
$fileType = 'png';
break;
default:
$fileType = 'unknown';
break;
}
return $fileType;
}
-
apache php 配置无后缀文件也可以解析
1、设置test.php为默认文档
2、设置伪静态(确切的说是url重写)
如何让非.php后缀名的文件,以php脚本的形式
在WINDOWS上吗,需要建立文件关联,可以资源管理器文件类型修改,可以双击文件选择,可以修改注册表,还可以使用下面的DOS命令:
assoc .php=PHPFile
ftype PHPFile=d:\php\php.exe "%0" %*
如何让非.php后缀名的文件,以php脚本的形式运行
进入php源程序目录中的ext目录中,这里存放着各个扩展模块的源代码,选择你需要的模块,比如curl模块:cd curl
执行phpize生成编译文件,phpize在PHP安装目录的bin目录下
/usr/local/php5/bin/phpize
运行时,可能会报错:Cannot find autoconf. Please check your autoconf installation and
the $PHP_AUTOCONF
environment variable is set correctly and then rerun this
script.,需要安装autoconf:
yum install autoconf(RedHat或者CentOS)、apt-get install
autoconf(Ubuntu Linux)
/usr/local/php5/bin/php -v
执行这个命令时,php会去检查配置文件是否正确,如果有配置错误,
这里会报错,可以根据错误信息去排查!