首页 > CMS > 帝国Empire > 正文

帝国CMS多值字段调用方法

2024-08-28 12:24:44
字体:
来源:转载
供稿:网友

 完整调用方法:

<?php
  $dianping=$navinfor['dianping'];
  $mpr=explode('||||||',$dianping);
  $mpcount=count($mpr);
  for($mpi=0;$mpi<$mpcount;$mpi++)
  {
  $mp=explode('::::::',$mpr[$mpi]);            
  echo"<p>[".$mp[0]."月份] ".$mp[1]."</p>";
  }
?>

内容模板用php分割$navinfor[字段名]内容

示例1:


<?php
$morefr=explode('||||||',$navinfor[字段名]);
$mfcount=count($morefr);
for($mfi=0;$mfi<$mfcount;$mfi++)
{
?>
<?=$morefr[$mfi]?>
<?php
}
?>

示例2:

<?php
$test=explode("||||||",$navinfor['ziduan']);
?>
<?=$test[0]?>
<?=$test[1]?>
<?=$test[2]?>

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表