帝国CMS多值字段的调用,以及只调用多值字段最新增加的一行。


avatar
pcwnas 2023-04-21 218

多值字段调用如下:


<?php

$morefr=explode(‘||||||’,$navinfor[字段名]);

$mfcount=count($morefr);

for($mfi=0;$mfi<$mfcount;$mfi++)

{

$morefrf=explode(‘::::::’,$morefr[$mfi]);

?>

选项1:<?=$morefrf[0]?>

选项2:<?=$morefrf[1]?>

选项3:<?=$morefrf[2]?>

选项4:<?=$morefrf[3]?>

……

<?php

}

?>

多值字段如何只调用最后一行的数据(其实就是“直接调用数组-1$morefr[count($morefr)-1]”)代码如下:


<?php

$morefr=explode(‘||||||’,$navinfor[字段名]);

$mfcount=count($morefr);

{

$morefrf=explode(‘::::::’,$morefr[count($morefr)-1]);

?>

<ul>

<li><?=$morefrf[0]?><?=$morefrf[1]?><?=$morefrf[2]?></li>

</ul>

<?php

}

?>