我正在尝试简单的文件上传。我在Laravel 5.8上使用的是PHP 7.2.19,此问题仅在PDF文件中发生!
updates = tf.constant([[1., 2., 3.], [4., 5., 6.]]) # [2, 3]
idx = tf.constant([[[0, 0, 0, 1], [0, 0, 0, 0], [0, 0, 1, 0]], [[1, 0, 1, 1], [1, 0, 0, 0], [1, 0, 1, 0]]]) # [2, 3, 4]
output = tf.scatter_nd(idx, updates, [2, 1, 4, 4])
sess = tf.Session()
print(sess.run(output))
[[[[2. 1. 0. 0.]
[3. 0. 0. 0.]
[0. 0. 0. 0.]
[0. 0. 0. 0.]]]
[[[5. 0. 0. 0.]
[6. 4. 0. 0.]
[0. 0. 0. 0.]
[0. 0. 0. 0.]]]]
我更改了:
php ini :
memory_limit = 128M
upload_max_filesize = 100M
post_max_size = 100M
max_input_time = 600
max_execution_time = 300
从60到600&max_input_time
从30到300
HTML代码:
max_execution_time
PHP代码:
<form class="form-horizontal tasi-form" method="POST" action="{{route('brochure.update')}}" enctype="multipart/form-data" id="commentForm">
@csrf()@method('POST')
<input type="file" name="brochure_file" class="default" value="{{old('brochure_file')}}" />
</form>
答案 0 :(得分:0)
文件大小大于php.ini
文件中的最大大小。
尝试从您采取措施上载文件的方法中查看phpinfo
因为php.ini
文件夹中还有另一个cli
文件