get_included_files 返回被 include和require文件名的array
说明
get_included_files ( void ) : array
返回所有被 include、 include_once、 require 和 require_once 的文件名。
返回值
返回所有文件名称的 array。
脚本最初被称为”被包含的文件“,所以脚本自身也会和 include 系列函数引用的脚本列在一起,被多次 include 和 require 的文件在返回的 array 里只会列出一次。
扩展资料:
程序示例
<php
include 'test1php';
include_once 'test2php';
require 'test3php';
require_once 'test4php';
$included_files = get_included_files();
foreach ($included_files as $filename) {
echo "$filename\n";
}
>
解决楼主的问题的方法就是,分开写代码,即:
$filearr = split("",$filename);
$filetype = end($filearr);
split 函数用来分割字符串的时候,基本等同于函数 preg_grep,分割表达式可以是一个正则表达式,也可以是一个普通字符串,所以本身的执行效率很低,这一点你要记得……
所以,实现你现在的这个需求的话,最好用explode函数,使用普通字符作为分割表达式……
但是也的确如楼上所说,split 函数(PHP里)已经弃用,你可以使用 preg_match、preg_match_all 、preg_grep 等使用正则表达式作为分割的函数来替代。
就整个你的需求而言,你的思路还不很好,当一个文件名是abcdefgphp的时候,程序要浪费多余的资源来分割其实你不用的a、b、c……,
所以要简单满足你取后缀名的需求的代码应该是:
$filetype=substr(strrchr($filename,''),1);
此外还有:$path_info = pathinfo($filename); $filetype = $path_info['extension']; 其实不是很推荐。
下面比较一下它们各自的执行效率:
设文件名是:aaabbphp、循环执行10000次;执行10次取平均值:
split + end :0067644s
explode + end :0016251s
pathinfo + ['extension'] :0018983s
strrchr + substr :0008611s
以上文字现场版纯手敲,2012-2-25 10:41,谢谢
把你的代码改一下
$File_name = '/aa/bb/jbn' date('YmdHis') rand(0, 999) 'js';$file = fopen( $File_name, 'a');
//然后你要在数据 *** 作的时候, $File_name就是所说的文件名
可以的:
<php
$dir = opendir('/movie');
while(($file = readdir($dir))!=false){
if ($file!="" && $file!="") {
$ns = explode('', $file);
echo $ns[0];
}
}
closedir($dir);
我来修改下吧:
你把
if(strstr($entry,$_REQUEST["kw"]))
{
$string = file_get_contents($entry);
echo $string"\n";
break;
}
改成
if(strstr($entry,$_REQUEST["kw"]))
{
$string = file_get_contents($targetdir'/'$entry);
echo $string"\n";
break;
}
一般来说php中读取目录下的文件名的方式确实不少,最简单的是scandir,具体代码如下:\x0d\复制代码 代码如下:$dir="/caxa/";\x0d\$file=scandir($dir);\x0d\print_r($file);\x0d\稍微复杂点的,来自于php手册:\x0d\复制代码 代码如下:$dir = "/etc/php5/";\x0d\// Open a known directory, and proceed to read its contents\x0d\if (is_dir($dir)) {\x0d\if ($dh = opendir($dir)) {\x0d\while (($file = readdir($dh)) !== false) {\x0d\echo "filename: $file : filetype: " filetype($dir $file) "\n";\x0d\} closedir($dh);\x0d\}\x0d\}\x0d\这些都只能读取当前指定目录下的文件,对子目录中的文件则无法读取。原来自己写过一个循环删除所有目录的一段代码,需要逐个子目录删除所有文件,包括多层。但是只需要读出文件名,稍微复杂点,网上找到一个能用,原始代码有错误提示,改了一下引用&$data的地方,如下所示:\x0d\复制代码 代码如下:function searchDir($path,&$data){\x0d\if(is_dir($path)){\x0d\$dp=dir($path);\x0d\while($file=$dp->read()){\x0d\if($file!=''&& $file!=''){\x0d\searchDir($path'/'$file,$data);\x0d\}\x0d\}\x0d\$dp->close();\x0d\}\x0d\if(is_file($path)){\x0d\$data[]=$path;\x0d\}\x0d\}\x0d\function getDir($dir){\x0d\$data=array();\x0d\searchDir($dir,$data);\x0d\return $data;\x0d\}\x0d\print_r(getDir(''));\x0d\希望本文所述对大家的PHP程序设计有所帮助。
<php
////////////////////////////////// BEGIN SETUP
$filename ="document_namexls";
header('Content-type: application/ms-excel');
header('Content-Disposition: attachment; filename='$filename);
////////////////////////////////// END SETUP
////////////////////////////////// BEGIN GATHER
// Your MySQL queries, fopens, et cetera go here
// Cells are delimited by \t
// \n is just like you might expect; new line/row below
// EG:
$stuff="PART\tQTY\tVALUE\t\n";
$stuff=$stuff"01-001-0001\t37\t2876\t\n";
$stuff=$stuff"01-001-0002\t6\t34706\t\n";
$stuff=$stuff"01-001-0003\t12\t711\t\n";
////////////////////////////////// END GATHER
// The point is to get all of your data into one string and then:
////////////////////////////////// BEGIN DUMP
echo $stuff;
////////////////////////////////// END DUMP
>
以上就是关于php如何获取当前脚本所有加载的文件全部的内容,包括:php如何获取当前脚本所有加载的文件、php截取文件扩展名、php中如何获取fopen创建的文件的文件名字等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)