我是编程新手,我必须自学。但是,我无法弄清楚我在这个项目中做错了什么。这个项目是为我自己做的,用 PHP 做快捷方式,这样我就不用编写那么多行代码了;当我编程时,有时我会为不同的应用程序使用相同的 20 行代码。
这是我的脚本:
function writeDir($directory = null, $link = null, $exception = null) {
if (!isset($directory)) {
$directory = './';
}
if (!isset($link)) {
$link = false;
}
if (!isset($exception)) {
$exception = null;
}
// now...
if ($link==true&&$exception!=null) { // do a link and exception(s)
$directoryList = scandir($directory); // get an array of all directory items
$directoryLength = count($directoryList); // count $directoryList array length
if (is_string($exception)) { // if one (1) exception
for ($i=2; $i<$directoryLength; $i++) { // cycle through all directory items
if ($directoryList[$i] == $exception) { // if we hit that one (1) exception
echo ''; // do nothing
} else {
echo '<a href="' . $directoryList[$i] . '"> ' . $directoryList[$i] . ' </a><br />' . "\n";
}
}
}
if (is_array($exception)) { // if multiple exceptions
$exceptionList = count($exception); // count $exception array length
for ($i=2; $i<$directoryList; $i++) { // cycle through all directory items
for ($j=0; $j<$exceptionList; $j++) { // cycle through all exceptions
if ($directoryList[$i] == $exceptionList[$j]) { // if we hit one of the multiple exceptions
echo ''; // do nothing
} else {
echo '<a href="' . $directoryList[$i] . '"> ' . $directoryList[$i] . ' </a><br />' . "\n";
}
}
}
}
}
if ($link==true&&$exception==null) {
$directoryList = scandir($directory);
$directoryLength = count($directoryList);
for ($i=2; $i<$directoryLength; $i++) {
echo '<a href="' . $directoryList[$i] . '"> ' . $directoryList[$i] . ' </a><br />' . "\n";
}
}
if ($link==false&&$exception!=null) { // do only exception(s) without links
$directoryList = scandir($directory); // get an array of all directory items
$directoryLength = count($directoryList); // count $directoryList array length
if (is_string($exception)) { // if one (1) exception
for ($i=2; $i<$directoryLength; $i++) { // cycle through all directory items
if ($directoryList[$i] == $exception) { // if we hit that one (1) exception
echo ''; // do nothing
} else {
echo $directoryList[$i] . '<br />' . "\n";
}
}
}
if (is_array($exception)) { // if multiple exceptions
$exceptionList = count($exception); // count $exception array length
for ($i=2; $i<$directoryList; $i++) {
for ($j=0; $j<$exceptionList; $j++) {
if ($directoryList[$i] == $exceptionList[$j]) {
echo '';
} else {
echo $directoryList[$i] . '<br />' . "\n";
}
}
}
}
}
if ($link==false&&$exception==null) {
$directoryList = scandir($directory);
$directoryLength = count($directoryList);
for ($i=2; $i<$directoryLength; $i++) {
echo $directoryList[$i] . '<br />' . "\n";
}
}
}
我知道它看起来很多。但是,我试图在编程时让我的生活更简单。
基本上,在 PHP 文件中调用它的语法是:
writeDir(); // at the very least
:或者:writeDir('./', true, 'index.php');
第二个在当前目录中写入文件,并带有相应的链接,但跳过了 index.php 文件。
第三个 (3rd) 参数可以是单个省略页(作为字符串)或多个省略页的数组。或者,至少这就是我想要实现的目标。
当然,在我使用它的所有页面上都需要包含这个源文件。以前,当它工作时,我只能格式化目录项列表,排除一 (1) 个文件。因此,我也尝试允许一组文件。现在,它永远加载。我终于不得不使用一个set_time_limit()
函数来退出脚本。
现在,最后一件事。当我使用该set_time_limit()
功能时,它会显示我的目录项,但由于某种原因,有两 (2) 项...我做错了什么?
是否有太多的 if 语句,或者我忽略了什么?我应该重新开始吗?
我只(不专业地)编程了大约 5 年,所以我真的不知道我在做什么。任何指导将不胜感激。
希望我已经提供了足够的信息和细节。
点
PS 任何想要使用这个脚本的人都非常欢迎(如果它甚至值得使用的话)。