0

我想要做的是添加一个 elevatezoom 画廊并根据他们从 mysql 获得的结果创建那些小方块(如果 photo1 设置为任何位置,然后 square1 出现,如果 photo2 设置为一个位置,正方形 2 出现,如果photo3 是空的,什么都没有出现(你明白了)

问题是,在下一次编辑之后,我得到一个空白页。

这是整个代码。

    <?php use_helper("StaticUrl");?>
<div class="product_image">
    <?php 
      $href = url_for($product->getRouteUrl(ESC_RAW));
      if ($sf_context->getActionName() == 'view')
    {
      $href = static_url_for($product->generatePhotoPath('large',ESC_RAW));
    }
    ?>

  <a <?php echo $sf_context->getActionName() == 'view' ? 'class="lightbox"' : ''; ?> href="<?php echo $href;?>" title="<?php echo $product; ?>">
        <img src="<?php echo  static_url_for($product->generatePhotoPath(ESC_RAW)); ?>" alt="<?php echo $product; ?>" data-zoom-image="<?php echo  static_url_for($product->generatePhotoPath('large',ESC_RAW)); ?>" class="zoom" style="z-index:999999;" />
  </a>

  <?php 
   $resultt  = Doctrine_Query::create()->from("Product")
                          ->select("photo1")
                          ->where("id = ?", $product_id)
                          ->fetchOne(array(), Doctrine_Core::HYDRATE_ARRAY);
    if (empty($resultt))
    {
       return sfView::NONE;
    }  

?>

    <?php if(isset(resultt)){  ?>
  <div id="gal1">

  <a href="#" data-image="<?php echo  url_for($product->generatePhotoPath("small", 1, ESC_RAW)); ?>" data-zoom-image="<?php echo  url_for($product->generatePhotoPath("large", 1, ESC_RAW)); ?>">
    <img id="img_01" src="<?php echo  url_for($product->generatePhotoPath("small", 1, ESC_RAW)); ?>" />
  </a>

    <?php } ?>

  <a href="#" data-image="<?php echo  url_for($product->generatePhotoPath("small", 2, ESC_RAW)); ?>" data-zoom-image="<?php echo  url_for($product->generatePhotoPath("large", 2, ESC_RAW)); ?>">
    <img id="img_01" src="<?php echo  url_for($product->generatePhotoPath("small", 2, ESC_RAW)); ?>" />
  </a>

  <a href="#" data-image="<?php echo  url_for($product->generatePhotoPath("small", 3, ESC_RAW)); ?>" data-zoom-image="<?php echo  url_for($product->generatePhotoPath("small", 3, ESC_RAW)); ?>">
    <img id="img_01" src="<?php echo  url_for($product->generatePhotoPath("small", 3, ESC_RAW)); ?>" />
  </a>

</div>
</div>

<script src="/js/elevatezoom/jquery.elevatezoom.js" type="text/javascript"></script>
4

1 回答 1

1

您在发布内容的第 27 行有一个错误,内容如下:

if(isset(resultt)){

错误是:

Fatal error: Cannot use isset() on the result of an expression (you can use "null !== expression" instead)

在尝试查找错误时,打开所有错误会有所帮助,这样就会出现类似的情况。利用

error_reporting (E_ALL);

在开发时位于脚本的顶部。

于 2016-09-22T15:34:34.860 回答