PHP &

0 Cevap php

Temelde bir şey yazmak için iki yol var

Birincisi:

<?php
echo link_to(
  static_image_tag(
    $object->getImageWebPath(),
    array(
      "alt" => $object->getTitle(),
      "width" => "106",
      "height" => "73",
      "class" => 'aaa bbb'
     )
  ),
  url_for('route_name', $object),
  array(
    "class" => "aaa bbb", "title" => $object->getTitle())
  );
?>

İkincisi:

<a href="<?php echo url_for('route_name', $object->getLink()); ?>" title="<?php echo $object->getTitle(); ?>" class="aaa bbb">
  <img src="<?php echo map_to_static_domain($image->getWebPath()) . $image->getWebPath(); ?>" class="aaa bbb" alt="echo $image->getTitle()" "width" => "106", "height" => "73" />
</a>

Şimdi bir 'milyon dolarlık bir soru', siz bile neden belki kullanmak ve tek yönlü ...

Teşekkürler.

0 Cevap