我有功能:
function selects($sql,$tmpl) {
preg_match_all('/{[^}]*}/', $tmpl, $m);
foreach($m[0] as $key => $val) {
$find[] = $val;
$replace[] = '$row[\''.str_replace(array('{','}'),"",$val).'\']';
}
eval($replace);
while($row = mysql_fetch_array($sql))
{
$selects .= str_replace($find, $replace, $tmpl)."\n";
}
return $selects;
}
echo selects($country_sql,'<option value="{id}">{name}</option>');
输出:
<option value="$row['id']">$row['name']</option>
应输出:
<option value="1">something</option>
<option value="2">something</option>
...
有什么想法吗?
我写了这个函数,因为我有很多不同的选择,我需要不同的模板。
感谢。
答案 0 :(得分:1)
这对我有用,因为$country_sql
是一个sql语句
<?php
function selects($sql,$template) {
preg_match_all('/{([^}]*)}/', $template, $matches);
$result = mysql_query($sql); //were missing this?
$select = '';
while($row = mysql_fetch_assoc($result)){
$aux = $template;
for($i = 0; $i < count($matches[0]); $i++){
$aux = str_replace($matches[0][$i], $row[$matches[1][$i]],$aux);
}
$select .= $aux."\n";
}
return $select;
}
echo "<select>";
echo selects($country_sql,'<option value="{id}">{name}</option>');
echo "</select>";
?>
您可以将<select>
部分添加到该功能中,但这取决于您。