diff options
author | alonso <alonso@us.es> | 2010-10-23 09:22:07 +0000 |
---|---|---|
committer | alonso <alonso@us.es> | 2010-10-23 09:22:07 +0000 |
commit | 550b680d176cbccfecfe35fad440dd570d90ba5b (patch) | |
tree | c81a133cb819d719d5e2d103b2b6b12447b60bf7 /admin/WebConsole/dirphp.php | |
parent | 5f11948f55d9b9c11c76a75b65bde7d4e5477191 (diff) |
git-svn-id: https://opengnsys.es/svn/trunk@1313 a21b9725-9963-47de-94b9-378ad31fedc9
Diffstat (limited to 'admin/WebConsole/dirphp.php')
-rw-r--r-- | admin/WebConsole/dirphp.php | 63 |
1 files changed, 0 insertions, 63 deletions
diff --git a/admin/WebConsole/dirphp.php b/admin/WebConsole/dirphp.php deleted file mode 100644 index 73dfb3a0..00000000 --- a/admin/WebConsole/dirphp.php +++ /dev/null @@ -1,63 +0,0 @@ -<?php -listar_directorios_ruta("./"); -function listar_directorios_ruta($ruta){ - // abrir un directorio y listarlo recursivo - if (is_dir($ruta)) { - if ($dh = opendir($ruta)) { - while (($file = readdir($dh)) !== false) { - if($file !=".svn" && $file!="." && $file!=".."){ - //esta línea la utilizaríamos si queremos listar todo lo que hay en el directorio - //mostraría tanto archivos como directorios - //echo "<br>Nombre de archivo: $file : Es un: " . filetype($ruta . $file); - if (is_dir($ruta . $file) && $file!="." && $file!=".."){ - //solo si el archivo es un directorio, distinto que "." y ".." - echo "<br>Directorio: $ruta$file"; - listar_directorios_ruta($ruta . $file . "/"); - } - else{ - //echo "<br>Archivp:$file"; - //if($file=="aulas.php") - procesaarchivo($ruta,$file); - } - } - } - closedir($dh); - } - }else - echo "<br>No es ruta valida"; -} - function procesaarchivo($ruta,$file){ - $meta='<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">'; - $archivo=realpath($ruta.$file); - echo "<br>Procesando Archivo:".$file; - - $tam=filesize($archivo); - $fp = fopen($archivo, "rb"); - $buffer = fread($fp, $tam); - fclose($fp); - - $pos = strpos($buffer,'<HEAD> - <meta http-equiv="Content-Type" content="text/html;charset=UTF-8">'); - if($pos==0) - $pos = strpos($buffer,'<head>'); - if($pos==0) - return; - - $dpl=strlen('<HEAD>'); - $prebuffer=substr($buffer,0,$pos+$dpl); - $posbuffer=substr($buffer,$pos+$dpl); - - $buffer=$prebuffer."\n\t".$meta.$posbuffer; - - /* - $buffer=ereg_replace( "<"," ",$buffer); - $buffer=ereg_replace( ">"," ",$buffer); - $buffer=ereg_replace( "[\n\r]","<BR>",$buffer); - echo $buffer; - */ - - $fp = fopen($archivo,"w"); - fwrite($fp, $buffer,strlen($buffer)); - fclose($fp); -} -?>
\ No newline at end of file |