圖片集分割morepic字段內容:
<?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
}
?>
輸出代碼:
圖片集分割morepic字段內容:
<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="<?=$a=$exp[1];?>" alt="第一張" />
<?php
?>
輸出代碼如下:
提取第一幀圖片
<img src="/d/file/sell/2014-07-02/154f3b8dd3c1d6d569d886ad0c6f2800.jpg" alt="第一張" />