简单的PHP图像转换器与xml数据

时间:2014-10-15 18:52:46

标签: php xml image

这里我将此代码与xml文件一起使用。

我想显示更多图片而不只是一张 - >例如:幻灯片放映,或简单的"图像旋转器/转换器"。我怎么能这样做?

PHP:

<?php

                if ($this->aktuelles) {
                    $id = 1;
                    foreach ($this->aktuelles as $aktuelle) {
                        if ($aktuelle->url == '') {$url = '';}
                        else {$url = $aktuelle->url; $target = 'target="_blank"'; $btn = '<a href="' . $aktuelle->url . '" class="read-more btn" target="_blank">' . 'weiter lesen</a>';}
                        //$text = substr($aktuelle->text, 0, 1150) . ' ...';
                        $text = $aktuelle->text;
                        echo '
                            <article class="clearfix">

                                <a class="linkimage" href="images/aktuelles/' . $aktuelle->image . '" data-rel="prettyPhoto"><img src="images/aktuelles/' . $aktuelle->image . '" alt="' . $aktuelle->title . '"/></a>
                                <h4 class="title"><a href="' . $url . '" ' . $target . '">' . $aktuelle->title . '</a></h4>
                                <p>' . $text . '</p>
                                ' . $btn . '
                            </article>
                            <hr>
                        ';
                        $id++;
                    }
                    unset($id);
                }
                elseif ($this->aktuelle) {
                    $aktuelle = $this->aktuelle;
                    $title = $aktuelle->title;
                    $url = SITE_PATH . $aktuelle->url;
                    $text = $aktuelle->text;
                    $image = $aktuelle->image;
                    echo '
                        <a href="'.SITE_PATH.'/'.$this->lang.'/aktuelles" class="read-more btn">&#171; Zurück</a><br><br>
                        <article class="clearfix">
                            <a class="linkimage" href="images/aktuelles/' . $image . '" data-rel="prettyPhoto"><img src="images/aktuelles/' . $image . '" alt="' . $title . '"/></a>
                            <h4 class="title"><a href="' . $url . '">' . $title . '</a></h4>
                            <p>' . $text . '</p>
                        </article>
                    ';
                    unset($aktuelle);
                }
            ?>

这是我写的xml代码:

<?xml version="1.0" encoding="UTF-8"?>
<aktuelles>
    <aktuelle>
        <title><![CDATA[THIS IS THE TITLE]]></title>
        <image>image1.jpg</image>
        <text>
            <![CDATA[
            This is the content<br>
        </text>
        <url></url>
    </aktuelle>
</aktuelles>

0 个答案:

没有答案