您的位置:

关于phprootdir的信息

本文目录一览:

PHP高手请教,如何把相册程序的相册文件夹默认图标改为自定义图标?

可能是这样

img src=\"".$root."sysimg/file.gif\" border=\"0\" width=\"100\" height=\"80\"

---》

img src=\"".$rootdir."/file.gif\" border=\"0\" width=\"100\" height=\"80\"

img src=\"".$root."sysimg/dir.gif\" border=\"0\" width=\"100\" height=\"80\"

---》

img src=\"".$rootdir."/dir.gif\" border=\"0\" width=\"100\" height=\"80\"

php中怎样得到客户端的http请求header所有信息

?php

$dir=$HTTP_GET_VARS["dir"]; //.......取得上个页面传递来的路径

$file=$HTTP_GET_VARS["file"]; //.......取得传递来的文件名

$url=parse_url($HTTP_REFERER); /*......取得前一页面的URL地址,并将其放入一个数组中*/

if($url[host]!=$HTTP_HOST){echo "要下载本软件请到a href=;东方小屋/a";exit;} /*检查来源网站是不是自己的网站,如果不是,返回“要下载本……”*/

if(empty($dir))$dir="/"; //......如果路径名为空,则为指定根目录

if(empty($file)){echo "未指定要下载的文件!";exit;} /*如果文件名为空,返回“未指定……”*/

$rootdir="文件存放的根目录";//......你的下载路径根目录 

$realurl=$rootdir.$dir; //.......取得你的下载目录

chdir($realurl); //......将当前目录转到下载目录中

if(!file_exists($file)){echo "对不起,此链接已经失效,请在下载页面上向我们报告,谢谢!";exit;} //......测试文件是否存在

$filename=$file; 

//发送文件头信息

header("Cache-control: private"); // fix for IE 

header("Content-Type: application/octet-stream"); 

header("Content-Length: ".filesize($filename)); 

header("Content-Disposition: attachment; filename=$filename"); 

$fp = fopen($filename, 'r'); // 以读取方式打开指定文件

fpassthru($fp); // ** CORRECT ** 以二进制方式读取文件

fclose($fp); // 关闭文件

?

如何添加php的build system

1、在*.rc文件中用setprop添加,例如在源码android4.0\system\core\rootdir\etc\init.goldfish.rc中有以下内容:

setprop ARGH ARGH

setprop net.eth0.gw 10.0.2.2

setprop net.eth0.dns1 10.0.2.3

setprop net.gprs.local-ip 10.0.2.15

2、在PRODUCT_PROPERTY_OVERRIDES中添加,例如在源码android4.0\build\target\product\core.mk中有以下内容:

PRODUCT_PROPERTY_OVERRIDES := \

ro.config.notification_sound=OnTheHunt.ogg \

ro.config.alarm_alert=Alarm_Classic.ogg

3、在system.prop文件中添加,例如在源码android4.0\build\target\board\generic\system.prop中有以下内容:

rild.libpath=/system/lib/libreference-ril.so

rild.libargs=-d /dev/ttyS0

4、在buildinfo.sh文件中添加。例如在源码android4.0\build\tools\buildinfo.sh中有以下内容:

echo "ro.build.version.release=$PLATFORM_VERSION"

echo "ro.build.date=`date`"

echo "ro.build.date.utc=`date +%s`"

PHP 如何遍历一个目录 要求刚出来只显示第一级的文件夹和文件 当点击了文件夹的时候显示下级文件 要代码!

把变量填充到模板就自己搞定了,难道遇到问题,就什么都要别人给你搞定,自己能搞定的,就自己搞定。

?php

error_reporting(E_ALL ^ E_NOTICE);

@header("Content-Type: text/html; charset=utf-8");

if($_GET['rootdir']){

$rootdir = $_GET['rootdir'];

}else{

$query = trim($_SERVER['QUERY_STRING'])!=''?queryCode($_SERVER['QUERY_STRING']):array();

$rootdir = $query['rootdir'];

print_r($query);

echo 'hr';

$showpath = $query['showpath'];//选择的路径

$showpathData = explode('/',$showpath);

$showpathData = array_diff($showpathData, array(''));

$showpathData = array_values($showpathData);

print_r($showpathData);

echo 'hr';

}

(!$rootdir || !is_dir($rootdir)) $rootdir = dirname(__FILE__);//定义默认根路径

$levl=0;

$nowDir = $query['rootdir'].$query['showpath'];

!$nowDir $nowDir = $rootdir;

$queryData = array();

$queryData['rootdir'] = $rootdir;

function read_dir($path){

strpos($path,'..') !== false exit('Forbidden');

$return=array();

$return['dirs']=array();

$return['files']=array();

if(is_dir($path)){

$childs=@opendir($path);

while($child=@readdir($childs)){

if($child!="." $child!=".." $child!="" $child!="Thumbs.db"){

if(is_dir("$path/$child")){

$return['dirs'][] = $child;

}else{

$return['files'][] = $child;

}

}

}

@closedir($childs);

}

count($return['dirs']) sort($return['dirs']);

count($return['files']) sort($return['files']);

return $return;

}

function levltext($levl){

$text=' ';

for($i=0;$i$levl;$i++){

$text.='|===';

}

return $text;

}

function queryCode($query,$key=''){

//因为要把实际路径用作参数来传输,为了安全,所以将参数加密

!$key $key = '******';//加密密匙

//json_encode,json_decode需要PHP 5 = 5.2.0

if(is_array($query)){

return StrCode(json_encode($query),'ENCODE',$key);

}else{

return json_decode(StrCode($query,'DECODE',$key),TRUE);

}

}

function StrCode($string,$action='ENCODE',$key=''){

//base64+$key加解密

$string.="";

$action != 'ENCODE' $string = base64_decode($string);

$code = '';

$key = md5($key);

$keylen = strlen($key); $strlen = strlen($string);

for ($i=0;$i$strlen;$i++) {

$k = $i % $keylen;

$code .= $string[$i] ^ $key[$k];

}

return ($action!='DECODE' ? base64_encode($code) : $code);

}

function printTable($ePath=''){

global $showpathData,$queryData,$levl,$rootdir;

$dfData = read_dir($rootdir.'/'.$ePath);

$_tDir = $showpathData[$levl];

$levl++;

$levltext = levltext($levl);

foreach($dfData['dirs'] as $_dir){

$queryData['showpath'] = $ePath.'/'.$_dir;

$queryString = queryCode($queryData);

$ext = ($_dir == $_tDir)?'--':'++';

?

tr

td?php echo $levltext.$ext;?a href="??php echo $queryString;?"?php echo $_dir;?/a/td

/tr

?php

if($_dir == $_tDir){

printTable($ePath.'/'.$_dir);

}

}

foreach($dfData['files'] as $_file){

?

tr

td?php echo $levltext;? ?php echo $_file;?/td

/tr

?php

}

}

//=======================================================================

print EOT

form action='' method=get

当前打开:{$nowDir}br

主路径:input value="$rootdir" name='rootdir' size=70

input type=submit

/form

hr

table width="100%" border="1" cellspacing="0" cellpadding="0"

tr

td b路径/b/td

/tr

EOT;

printTable();

print EOT

/table

EOT;

?

php怎么删除文件?

删除文件可以相对路径,也可以绝对路径,从你图片2来看,报错的信息是权限不够,没有权限删除"./",这说明你后面的值没有获取到。而它没有权限删除它所在的目录。

删除文件注意两点。

文件路径是否存在,可以通过file_exist判断。

文件权限是否足够。

为什么 编程创文件时说路径无效

$RootDir = $_SERVER['DOCUMENT_ROOT'];

$fileDir = $RootDir.'\phpDemo\fopen.txt';

这个方法是首先定义了根目录,再写出文件的绝对路径,通用也方便管理。