根据我的理解,Smarty包含许多在PHP中具有等效性的内置函数。
如何将下面的代码转换回本机PHP? “部分”是否类似于for循环?
<table width="400" border="0">
{section name=x loop=$records}
<tr>
{section name=y loop=$records[x]}
<td align="right">
<input type="checkbox" name="{$records[x][y].prefkey}" {if $records[x][y].prefval eq "on"}checked{/if} />
</td>
<td align="left">
<strong> {$records[x][y].prefkey}</strong>
</td>
{/section}
</tr>
{/section}
</table>
答案 0 :(得分:2)
以下是一个示例,为数据对象使用简单数组:
<?php
// generate some test data
$records = array(
array(
array('prefkey'=>"foo",'prefval'=>"on"),
array('prefkey'=>"bar",'prefval'=>"off"),
),
array(
array('prefkey'=>"foo",'prefval'=>"off"),
array('prefkey'=>"bar",'prefval'=>"off"),
),
array(
array('prefkey'=>"foo",'prefval'=>"off"),
array('prefkey'=>"bar",'prefval'=>"on"),
),
);
?>
<table width="400" border="0">
<?php for($x=0; $x<count($records); $x++){ ?>
<tr>
<?php for($y=0; $y<count($records[$x]); $y++){ ?>
<td align="right">
<input type="checkbox" name="<?=$records[$x][$y]['prefkey']; ?>" <?=($re
cords[$x][$y]['prefval'] == "on"? "checked" : "") ?>/></td>
<td align="left">
<strong> <?=$records[$x][$y]['prefkey']; ?></strong>
</td>
<?php }?>
</tr>
<?php }?>
</table>
如果数据包含在实际对象中,则需要更改访问者语法。
答案 1 :(得分:1)
这{section name=x loop=$records}{section}
相当于foreach(array_keys($records) as $x) { }