Satır sonuçları siparişi hakkında hızlı php soru

2 Cevap php

Aşağıdaki düşünün:

$img_pathm = JURI::root().'images/properties/images/'.$this->datos->id.'/';
$peque_path = JURI::root().'images/properties/images/thumbs/'.$this->datos->id.'/';

$result = count($this->Images);
$resultf = $result-1;

while ($resultf>=0){ ?>

<span class="editlinktip hasTip" title="<?php echo $this->datos->image1;?>::

<img border=&quot;1&quot; src=&quot;<?php echo $peque_path.$this->Images[$resultf]->name; ?>&quot; name=&quot;imagelib&quot; alt=&quot;<?php echo JText::_( 'No preview available'.$img_pathm ); ?>&quot; width=&quot;206&quot; height=&quot;100&quot; />">

<img src="<?php echo $peque_path.$this->Images[$resultf]->name; ?>" alt="Additional image <?php echo $resultf+1 ?>" width="65px" height="50px"/></span>  <?php

$resultf--; }

Bu, şu anda görüntüleri birbiri ardına basar. Yapmam gereken tüm bu görüntüleri kullanıcıya basılır sırayı ters olduğunu. Ben nerede, ya da nasıl bu kod ile SİPARİŞ benzer bir şey eklemek istiyorum emin değilim? Şimdiden teşekkürler!

2 Cevap

Sadece döngü başka bir yol:

$img_pathm = JURI::root().'images/properties/images/'.$this->datos->id.'/';
$peque_path = JURI::root().'images/properties/images/thumbs/'.$this->datos->id.'/';

$result = count($this->Images);
$resultf = 0;

while ($resultf<$result){ ?>

<span class="editlinktip hasTip" title="<?php echo $this->datos->image1;?>::

<img border=&quot;1&quot; src=&quot;<?php echo $peque_path.$this->Images[$resultf]->name; ?>&quot; name=&quot;imagelib&quot; alt=&quot;<?php echo JText::_( 'No preview available'.$img_pathm ); ?>&quot; width=&quot;206&quot; height=&quot;100&quot; />">

<img src="<?php echo $peque_path.$this->Images[$resultf]->name; ?>" alt="Additional image <?php echo $resultf+1 ?>" width="65px" height="50px"/></span>  <?php

$resultf++; }

Belki kullanmak array_reverse olabilir