2022-11-06 01:07:10 +01:00
|
|
|
{% import "helper.twig" as helper %}
|
|
|
|
<table class="table table-sm table-striped table-hover table-bordered">
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<td>PHP version</td>
|
|
|
|
<td>{{ php_version }} (SAPI: {{ php_sapi }})</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Server Operating System</td>
|
|
|
|
<td>{{ php_uname }}</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Opcache enabled</td>
|
|
|
|
<td>{{ helper.boolean_badge(php_opcache_enabled) }}</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
2023-01-16 00:15:15 +01:00
|
|
|
<td>Maximum upload size (upload_max_filesize / post_max_size)</td>
|
2022-11-06 01:07:10 +01:00
|
|
|
<td>{{ php_upload_max_filesize }} / {{ php_post_max_size }}</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>PHP extensions</td>
|
|
|
|
<td>{{ helper.array_to_tags(php_extensions) }}</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|