Hi,
ich habe folgendes script:
Und einen array der eine url ausgibt, der die quelle des zu skalierenden bildes ist:
Wie kann ich den array im script als quelle angeben?
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>
PHP:
$arrItem['html5']['key_visual_image_main'];
Wie kann ich den array im script als quelle angeben?