11.5 高手私房菜
技巧1:如何批量上传多个文件?
本章节讲述了如何上传单个文件,那么如何上传多个文件呢?用户只需要在表单中使用复选框相同的数组式提交语法即可。
提交的表单语句如下。
<form method="post" action="11.3.1.php" enctype="multipart/form-data"> <table border=0 cellspacing=0 cellpadding=0 align=center width="100%"> <input name="userfile[]" type="file" value="浏览1" > <input name=" userfile[]" type="file" value="浏览2" > <input name="f userfile[]" type="file" value="浏览3" > <input type="submit" value="上传" name="B1"> </td> </tr> </table> </form>
技巧2:如何从文件中读取一行?
在PHP网站开发中,支持从文件指针中读取一行。使用函数string fgets(int handle[,int length])即可实现上述功能。其中int handle是要读入数据的文件流指针,由fopen()函数返回数值;int length设置读取的字符个数,读入的字符个数为length-1。如果没有指定length,则默认为1024个字节。