01
foreach($dtp->CTags as $ctag)
02
{
03
if
($ctag->GetName()==
"img"
)
04
{
05
if
($i==($npos-1)) $preSrc = trim($ctag->GetInnerText());
06
if
($i==($npos+1)) $nextSrc = trim($ctag->GetInnerText());
07
$i++;
08
}
09
} 核心代码就在这里了,一个foreach循环,自然要修改这里了,修改后如下:
10
11
foreach($dtp->CTags as $ctag)
12
{
13
if
($ctag->GetName()==
"img"
)
14
{
15
if
($i==($npos-1)) $preSrc = trim($ctag->GetInnerText());
16
if
($i==($npos+1)) $nextSrc = trim($ctag->GetInnerText());
17
if
($i==$npos) $text = $ctag->GetAtt(
'text'
);
18
$i++;
19
}
20
}
只加了一句,然后模板中 以
<?php echo $text; ?>
就可以输出了。