sp_testdirs.html 735 B

1234567891011121314151617181920
  1. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  2. <style>
  3. *{ font-size:12px; line-height:22px; margin:0; padding:0}
  4. </style>
  5. <table style="margin:10px 10px 15px 20px;">
  6. <?php
  7. foreach($sp_testdirs as $d)
  8. {
  9. if($d!='/') $fulld = MYMPS_ROOT.$d;
  10. else $fulld = MYMPS_ROOT;
  11. if($d!='/') $rsta = (is_readable($fulld) ? '<font color=green>[√]读</font>' : '<font color=red>[×]读</font>');
  12. else $rsta = '';
  13. $wsta = (is_writeable($fulld) ? '<font color=green>[√]写</font>' : '<font color=red>[×]写</font>');
  14. ?>
  15. <tr>
  16. <td width="190"><?php echo $d; ?></td>
  17. <td><?php echo $rsta." ".$wsta; ?></td>
  18. </tr>
  19. <?php }?>
  20. </table>