• Jetzt anmelden. Es dauert nur 2 Minuten und ist kostenlos!

Src variable hinzufügen zu script?

Fr3ddy

Mitglied
Hi,

ich habe folgendes script:
Code:
<?php
  $width  = "320";  /** * new width */
  $height = "160";  /** * new height */
  $mode   = 'proportional'; /** * modes available: crop, proportional, box */
  $target = null;   /** * target for new images default = null (system/html/) */
  $newImage = $this->getImage($this->src, $width, $height, $mode, $target);
?>
<div class="image_container">
    <?php if($this->hasLink): ?><a href="<?php echo $this->href; ?>" title="<?php echo $this->title; ?>">
        <?php endif; ?><img src="<?php echo $newImage; ?>" width="<?php echo $width;?>" height="<?php echo $height;?>" title="" alt="<?php echo $this->alt; ?>" />
        <?php if($this->hasLink): ?></a><?php endif; ?>
</div>
Und einen array der eine url ausgibt, der die quelle des zu skalierenden bildes ist:
PHP:
$arrItem['html5']['key_visual_image_main'];

Wie kann ich den array im script als quelle angeben?
 
indem du das attribut src von dem objekt, das du ansprichst, mit dem wert aus dem array belegst. allerdings ist nicht so richtig ersichtlich, wo dort das objekt ist ;) (Vielleicht liegt's auch einfach an mir...)

PHP:
$this -> src = $arrItem['html5']['key_visual_image_main'];
 
Zurück
Oben