当前位置: 首页 > 知识库问答 >
问题:

严格提示:非静态方法不应静态调用

盛浩阔
2023-03-14

我在magento日志中得到这个错误:

严格注意:非静态方法 Mage_Catalog_Block_Product:getPriceHtml() 不应静态调用,假设$this来自第 23 行 /home/edistico/domains/fujitsu-skener.si/public_html/app/design/frontend/base/default/template/callforprice/callforprice_simple.phtml 中不兼容的上下文

这是callforprice_simple.phtml:

<?php $_product = $this->getProduct() ?>

<?php
// RM: Dobimo attribut
$prodBuyType = Mage::getModel('catalog/product')->load($_product->getId())->getProductBuyType();
?>
<?php  if ($_product->isAvailable()): ?>
<p class="availability in-stock"><?php echo $this->__('Availability:') ?> <span>
<?php echo $_product->getAttributeText('zaloga') ?></span></p>
<?php else: ?>    <p class="availability out-of-stock">
<?php echo $this->__('Availability:') ?> <span><?php echo $this->__('Out of stock') ?></span></p><?php  endif; ?>
<?php   echo $this->getChildHtml('product_type_data_extra') ?>

<?php $model=Mage::getModel('callforprice/callforprice')->loadByProductId($_product->getId());

if ($prodBuyType != 1) {
    if ($model->getId() && $model->getStatus()==1) {?>
    <div class="call-for-price"><?php echo "<font size=3><strong>" .$this->__($model->getValue()). "</strong></font>";?></div>
    <?php } else {
        echo Mage_Catalog_Block_Product::getPriceHtml($_product);
    }
} else {
    echo Mage_Catalog_Block_Product::getPriceHtml($_product);
}

?>

这是类:

<?php
/**
 * Magento
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the Open Software License (OSL 3.0)
 * that is bundled with this package in the file LICENSE.txt.
 * It is also available through the world-wide-web at this URL:
 * http://opensource.org/licenses/osl-3.0.php
 * If you did not receive a copy of the license and are unable to
 * obtain it through the world-wide-web, please send an email
 * to license@magentocommerce.com so we can send you a copy immediately.
 *
 * DISCLAIMER
 *
 * Do not edit or add to this file if you wish to upgrade Magento to newer
 * versions in the future. If you wish to customize Magento for your
 * needs please refer to http://www.magentocommerce.com for more information.
 *
 * @category    Mage
 * @package     Mage_Catalog
 * @copyright   Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
 * @license     http://opensource.org/licenses/osl-3.0.php  Open Software License (OSL 3.0)
 */


class Mage_Catalog_Block_Product extends Mage_Core_Block_Template
{
    protected $_finalPrice = array();

    public function getProduct()
    {
        if (!$this->getData('product') instanceof Mage_Catalog_Model_Product) {
            if ($this->getData('product')->getProductId()) {
                $productId = $this->getData('product')->getProductId();
            }
            if ($productId) {
                $product = Mage::getModel('catalog/product')->load($productId);
                if ($product) {
                    $this->setProduct($product);
                }
            }
        }
        return $this->getData('product');
    }

    public function getPrice()
    {
        return $this->getProduct()->getPrice();
    }

    public function getFinalPrice()
    {
        if (!isset($this->_finalPrice[$this->getProduct()->getId()])) {
            $this->_finalPrice[$this->getProduct()->getId()] = $this->getProduct()->getFinalPrice();
        }
        return $this->_finalPrice[$this->getProduct()->getId()];
    }

    public function getPriceHtml($product)
    {
        $this->setTemplate('catalog/product/price.phtml');
        $this->setProduct($product);
        return $this->toHtml();
    }
}

我能寻求一些帮助吗?

谢谢

共有1个答案

洪通
2023-03-14

Mage_Catalog_Block_Product::getPriceHtml($_product);

您需要首先创建一个类Mage_Catalog_Block_Product的实例(使用工厂方法getModel),然后调用函数Model-

 类似资料:
  • 我在我的网站上有这些错误: 严格的标准:第17行的 /home/kmxsiksf/www/modules/mod_jumi/mod_jumi.php中不应该静态调用非静态方法modJumiHelper::getCodeWritten() 严格标准:非静态方法modJumiHelper::getStorageSource()不应在/home/kmxsiksf/www/modules/mod_jumi

  • 我最近对 PHP 5.4 进行了更新,但收到有关静态和非静态代码的错误。 这是错误: 这是第371行: 我希望有人能帮忙。

  • 我正在使用存储库模式并尝试建立模型之间的关系。当我尝试运行存储()方法(在控制器中),该方法试图使用用户()方法(与方模型建立关系)时,我收到以下错误消息: 非静态方法不应该静态调用::user(),假设$this来自不兼容的上下文 我不明白为什么在尝试运行user()relationship方法时会出现此错误,但所有其他方法(包括$this- 以下是相关代码:

  • 我在www.westerford.co.za上的所有页面都有错误。这些错误导致内容被隐藏。 请到站点查看所有错误。可能是什么引起的? 谢谢

  • 我一直试图用我的验证代码进行php pear验证,但我收到的都是严格标准错误--问题是什么?我如何修复它? 电子邮件验证.php

  • PHP严格标准:不应在第33行的/web/sites/blah/somescript.PHP中静态调用非静态方法pear::iserror() 我在MDB2上看到了类似的错误。稍后再详细介绍。 somescript.php: 问题 是否有不同的方法来调用而不会产生错误?