功能:帝國cms圖集PHP調用代碼及調用圖集第一張圖片
代碼:
<!–調用圖片集第一張圖–>
<?php
$str=$navinfor[morepic];
$exp=explode("\\r\\n",$str);
$exp1=explode("::::::",$exp[0]);
?>
<img src="<?=$exp1[1]?>" width="660" height="560" alt="<?=$exp1[2]?>" />
<!–調用圖片集大圖–>
<?php
if($navinfor[morepic])
{
$exp=explode(chr(13),$navinfor[morepic]);
if($exp)
{
?>
<?php
foreach($exp as $k=>$v)
{
$exp2=explode('::::::',$v);
if($exp2[1])
{
echo '<img src="'.$exp2[1].'" width="660" height="560">';
}
}
}
}
?>
<!–調用圖片集小圖–>
<?php
if($navinfor[morepic])
{
$exp=explode(chr(13),$navinfor[morepic]);
if($exp)
{
?>
<?php
foreach($exp as $k=>$v)
{
$exp2=explode('::::::',$v);
if($exp2[0])
{
echo '<img src="'.$exp2[0].'" width="60" height="50">';
}
}
}
}
?>
下面的方法比較好用
圖片集調用代碼:
<?php
$picr=explode(egetzy('rn'),$navinfor[morepic]);
for($p=0;$p<count($picr);$p++)
{
$spicr=explode("::::::",$picr[$p]);
?>
小圖地址:<img src="<?=$spicr[0]?>" />
大圖地址:<img src="<?=$spicr[1]?>" />
圖片名稱:<?=$spicr[2]?>
<?php
}
?>
輸出的代碼:
<img src="/d/file/sell/2014-07-02/154f3b8dd3c1d6d569d886ad0c6f2800.jpg" />
<img src="/d/file/sell/2014-07-02/5472a488663bf1af5802948b626dac46.jpg" />
<img src="/d/file/sell/2014-07-02/b61ea31ea9f1de3330a79d442b8b59b1.jpg" />
<img src="/d/file/sell/2014-07-02/b29de812f7e01cb75fa0dfefa1bd3502.jpg" />
調用圖集中第一張圖片:
<?php
$str=$navinfor[morepic];
$exp=explode("::::::",$str);
?>
<img src="<?=$exp[1];?>" alt="第一張" />
<?php
?>