瓷砖可能令人困惑,但让我试着更好地解释一下: 我需要添加一个按钮(就像这些用于打开文件一样)但是为了选择目录,我可以将它传递给fopen并在PHP脚本中编写我需要的文件。 示例代码:
<form method="post" action="scripts/generate-parallax.php">
<input type="path" name="path" placeholder="Select directory"></input>
<button type="submit" class="btn waves-effect blue darken-2">CONFIRM</button>
</form>
PHP:
$path = fopen($_GET['path']);