答案 0 :(得分:1)
我认为你问的是如何将PHP文件与IDE相关联? 如果是这种情况,并且你在基于Windows的PC上,那么
应该这样做。
答案 1 :(得分:1)
这是一个解决方案,如果您在Windows上,它将显示目录中的所有文件,当您单击链接时它将打开服务器上的文件,所以要小心:
<?php
//path to project dir, basic loop out directory contents.
$dir = "C:/xampp/htdocs/";
if (is_dir($dir)) {
if ($dh = opendir($dir)) {
while (($file = readdir($dh)) !== false) {
echo '<a href="?start='.$file.'">'.$file."</a><br>\n";
}
closedir($dh);
}
}
//file link clicked
if(isset($_GET['start'])){
start_ide(basename($_GET['start']));
}
//use shell_exe to open the file
function start_ide($file){
global $dir;
shell_exec('@START '.$dir.'/'.$file);
}
?>