| Server IP : 162.214.74.102 / Your IP : 216.73.216.59 Web Server : Apache System : Linux dedi-4363141.lrsys.com.br 3.10.0-1160.119.1.el7.tuxcare.els25.x86_64 #1 SMP Wed Oct 1 17:37:27 UTC 2025 x86_64 User : lrsys ( 1015) PHP Version : 5.6.40 Disable Function : exec,passthru,shell_exec,system MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/lrsys/www/lrsys_projetos/sopizzas/application/third_party/mpdf60/examples/ |
Upload File : |
<?php
$ff = scandir('./');
sort($ff);
$files = array();
foreach($ff AS $f) {
if (preg_match('/example[0]{0,1}(\d+)_(.*?)\.php/',$f,$m)) {
$num = intval($m[1]);
$files[$num] = array(ucfirst(preg_replace('/_/',' ',$m[2])), $m[0]);
}
}
echo '<html><body><h3>mPDF Example Files</h3>';
foreach($files AS $n=>$f) {
echo '<p>'.$n.') '.$f[0].' <a href="'.$f[1].'">PDF</a> </p>';
}
echo '</body></html>';
exit;
// For PHP4 compatability
if (!function_exists('scandir')) {
function scandir($dir = './', $sort = 0) {
$dir_open = @ opendir($dir);
if (! $dir_open)
return false;
while (($dir_content = readdir($dir_open)) !== false)
$files[] = $dir_content;
if ($sort == 1)
rsort($files, SORT_STRING);
else
sort($files, SORT_STRING);
return $files;
}
}
?>