- Details
- Written by: Stanko Milosev
- Category: PHP
- Hits: 5550
With using DomDocument class.
Like this:
<?From here.
$sXML = '<root><element><key>a</key><value>b</value></element></root>';
$doc = new DOMDocument();
$doc->preserveWhiteSpace = false;
$doc->formatOutput = true;
$doc->loadXML($sXML);
echo $doc->saveXML();
?>
- Details
- Written by: Stanko Milosev
- Category: PHP
- Hits: 4238
- Details
- Written by: Stanko Milosev
- Category: PHP
- Hits: 5212
If you need to redirect page and pass $_POST variable (or any other variable) you should use following code:
<?php
header("HTTP/1.0 307 Temporary redirect");
header("Location: http://localhost/test.php");
?>
- Details
- Written by: Stanko Milosev
- Category: PHP
- Hits: 5300
<?php function rec_listFiles( $from = '.') { if(! is_dir($from)) return false; $files = array(); if( $dh = opendir($from)) { while( false !== ($file = readdir($dh))) { // Skip '.' and '..' if( $file == '.' || $file == '..') continue; $path = $from . '/' . $file; if( is_dir($path) ) $files += rec_listFiles($path); else $files[] = $path; } closedir($dh); } return $files; } ?>And here is iterative:
<?php function listFiles( $from = '.') { if(! is_dir($from)) return false; $files = array(); $dirs = array( $from); while( NULL !== ($dir = array_pop( $dirs))) { if( $dh = opendir($dir)) { while( false !== ($file = readdir($dh))) { if( $file == '.' || $file == '..') continue; $path = $dir . '/' . $file; if( is_dir($path)) $dirs[] = $path; else $files[] = $path; } closedir($dh); } } return $files; } ?>Searching for a file in a directory tree:
<?php function rec_listFiles( $fileName, $from = '.', &$pathOut) { if ($pathOut != '') return true; else { if(! is_dir($from)) return false; if( $dh = opendir($from)) { while( false !== ($file = readdir($dh))) { // Skip '.' and '..' if( $file == '.' || $file == '..') continue; $path = $from . '/' . $file; if( is_dir($path) ) { //echo $path.'<p/>'; rec_listFiles($fileName, $path, $pathOut); } else { if ($fileName == $file) { $pathOut = $path; } } } closedir($dh); } if ($pathOut == '') return false; else return true; } } $pom = ''; if (rec_listFiles('mod_newsflash.php', '.', $pom)) echo $pom; else echo 'Could not find file.'; ?>