test
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

49 lines
1.2 KiB

{template 'common/header'}
<div class="optimize">
<ul class="we7-page-tab"></ul>
<div class="clearfix">
<div class="panel we7-panel">
<table class="table we7-table table-hover site-list">
<col width="120px"/>
<col width=""/>
<col width=""/>
<col width=""/>
<tr>
<th>内存接口</th>
<th>PHP 扩展环境</th>
<th>Config 设置</th>
<th></th>
</tr>
{loop $extensions $key $extension}
<tr>
<td><span class="label label-success">{$key}</span></td>
<td>
{if $extension['support']}
支持
{else}
不支持
{/if}
</td>
<td>
{if $extension['status']}
已开启
{else}
未开启
{/if}
{if $key == 'opcache' && $extensions['eAccelerator']['status'] && $extensions['opcache']['status']}
<span class="label label-danger">eAccelerator 不可与 opcache同时开启</span>
{/if}
</td>
<td>
{if $extension['status'] && $extension['clear']}
<a href="{$extension['clear']['url']}">{$extension['clear']['title']}</a>
{/if}
{$extension['extra']}
</td>
</tr>
{/loop}
</table>
</div>
</div>
</div>
{template 'common/footer'}