Files

12 lines
355 B
PHP
Raw Permalink Normal View History

2026-07-21 08:39:17 -04:00
<?php
Q::header('Content-Type: application/json');
$result = ['post' => $_POST, 'files' => []];
foreach ($_FILES as $k => $f) {
$result['files'][$k] = [
'name' => $f['name'], 'size' => $f['size'],
'type' => $f['type'], 'error' => $f['error'],
'content' => file_get_contents($f['tmp_name']),
];
}
echo json_encode($result);