⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 view.php

📁 php蓝狐文章管理系统
💻 PHP
字号:
<?session_start();
 require "./inc/func.php";
 check_login();
require "./inc/header.inc"; 
require "./inc/nav.inc";
$location=".";
$res = chdir($location); 

// if chdir() successful 
if ($res) 
{ 
// get directory handle 
$hook = dir($location); 
while ($file=$hook->read()) 
{ 
if (is_file($file)) 
{ 
echo "<a href=edit.php?id=$file>$file</a><br>"; 
} 
} 
$hook->close(); 
} 
else 
{ 
echo "<b>Unable to locate directory $location</b><br>"; 
} 
require "./inc/footer.inc"; 
?> 
</body>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -