我需要在我的 html 文件中实现这个 PHP,这会转到一个目录检查那里的文件并创建一个带有这些选项的组合框......现在我怎样才能在我的 html 代码中的特定位置调用它。
<?php
$dir = 'xml/';
$exclude = array('somefile.php', 'somedir');
// Check to see if $dir is a valid directory
if (is_dir($dir)) {
$contents = scandir($dir);
echo '<select class="dropdown-toggle" id="combo">';
foreach($contents as $file) {
// This will exclude all filenames contained within the $exclude array
// as well as hidden files that begin with '.'
if (!in_array($file, $exclude) && substr($file, 0, 1) != '.') {
echo '<option>'. $file .'</option>';
}
}
echo '</select>';
}
else {
echo "The directory <strong>". $dir ."</strong> doesn't exist.";
}
?>