输入文件的内容分为数组bootstrap和php

时间:2017-05-29 15:20:54

标签: php twitter-bootstrap

我正在使用此代码输入文件:

<label class="control-label">Select File</label>
<input id="input-1" type="file" class="file">

但是如何将输入文件的内容保存到php数组并输出内容?

文件是这样的:

name1
name2
name3

1 个答案:

答案 0 :(得分:1)

首先,为文件字段命名,例如:

<input id="input-1" name="uploaded-file" type="file" class="file">

然后,在您的php文件中使用$_FILES superglobal来访问它:

$content = file_get_contents($_FILES['uploaded-file']['tmp_name']);

阅读PHP: Handling file uploads了解详情。