如果将图像发布到 php 脚本但 php 脚本不希望将图像发布到它,那么发布的图像会发生什么?它仍然进入服务器上的 /tmp 文件夹吗?
例子:
<form action="myscript.php" enctype="multipart/form-data" method="post">
<p>
Type some text (if you like):<br>
<input type="text" name="textline" size="30">
</p>
<p>
Please specify a file, or a set of files:<br>
<input type="file" name="datafile" size="40">
</p>
<div>
<input type="submit" value="Send">
</div>
</form>
我的脚本:
<?php
phpinfo();
?>