-1

我有一个关于 If 语句的问题,这真的让我抓狂。看来我没有找到正确的解决方案。请让我解释一下情况。有4种可能的情况

  1. 没有电影
  2. 没有图片
  3. 没有电影但有照片
  4. 没有照片但有电影

更多信息,但可能没有必要。 电影和图片字段是数据库中的字段。使用 PHP 脚本,我正在检查字段是否填充了某些内容。有了这些信息,我将构建我的页面。在某些情况下,没有地方放图片或放电影。我希望你明白我在说什么。

这是我的代码

<?php
    class Artikel{
public function printWholeArticle()
        {
            include ('connection.php');
            $sSql = "SELECT UNIX_TIMESTAMP(datum) as unixDatum, titel, artikel, id, image, video FROM tblArtikels WHERE id = '" . $this->m_sKey."'"; 
            $res = $mysqli -> query($sSql);
            return ($res);
        }
}


$key = $_GET['id']; // I get the key from the url
$oNieuwsArtikel = new Artikel();
$oNieuwsArtikel -> Key = $key;
$vAllNieuwsArtikel = $oNieuwsArtikel -> printWholeArticle();

$artikel = $vAllNieuwsArtikel -> fetch_assoc();


// just a part of my if statement, to let you guys know how I print the data to the screen
if ($artikel['image'] == "")
            {
                echo "<div class='datum'>" . "<div class='day'>" . date('d', $artikel['unixDatum']) . "</div>" . "<div class='month'>" . "/" . date('m',                            $artikel['unixDatum']) . "</div>" . "<div class='year'>" . date('Y', $artikel['unixDatum']) . "</div>" . "</div>";
            echo "<p>" . "<div class='content_wrap_page'>" .  "<div class='artikel_page'>" 
            . "<h1>" . $artikel['titel'] ."</h1>" . $artikel['artikel'] . "</div>" . "</div>" . "</p>";
            }

谢谢

4

1 回答 1

1
if (empty($artikel['video']))
{
    // no film code

    if (!empty($artikel['image']))
    {
        // no film but with picture code
    }
}
else if (empty($artikel['image']))
{
    // no picture code

    if (!empty($artikel['video']))
    {
        // no picture but with film code
    }
}

其中 $film 和 $picture 设置为从数据库查询中检索到的值。

于 2012-11-16T23:26:18.140 回答