如何將scandir與URL配合使用。現在看起來PHP並沒有將URL看作URL。有沒有辦法在scandir中使用URL?網址的PHP scandir
<form action="new_exercise.php?id=<?php echo $new_id; ?>" method="post">
<input class="" type="text" name="name_exe" required placeholder="Project naam">
<select name="audio" required>
<option></option>
<?php
$path = 'URL comes here';
$results = scandir($path);
foreach ($results as $result) {
if ($result === '.' or $result === '..') continue;
if (is_dir($path . '/' . $result)) {
echo "<option>" . $result . "</option>";
}
}
?>
<select>
<input class="btn-success" type="submit" name="submit" value="Maak nieuwe opdracht">
</form>
我當然希望scandir不允許這樣做 –
我非常確定您無法通過url執行此操作。 scandir函數接受相對或絕對的目錄路徑,但不能將URL傳遞給此函數。這不可能。 – DevMan