页面意外停止并显示消息“使用未定义的常量 VERSION - 假定为 'VERSION'”?

Warning: Use of undefined constant VERSION - assumed 'VERSION' (this will throw an Error in a future version of PHP) in /home/xxxxxxx/you-r.in/public_html/catalog/controller/extension/module/so_extra_slider.php on line 193

该站点已停止工作并突然显示此消息警告。php 和 Opencart 版本都没有更新。以下是代码的外观:


// Check Version

if(version_compare(VERSION, '2.1.0.2', '>')) {

    if ($this->customer->isLogged() || !$this->config->get('config_customer_price')) {

        $price = $this->currency->format($this->tax->calculate($product_info['price'], $product_info['tax_class_id'], $this->config->get('config_tax')), $this->session->data['currency']);

    } else {

        $price = false;

    }

}


慕标5832272
浏览 235回答 1
1回答

慕姐8265434

查看index.php通常定义版本的位置。例如<?php// Versiondefine('VERSION', '2.3.0.2.3');您可以像这样添加版本定义define('VERSION', 'your-version-number');// Check Versionif(version_compare(VERSION, '2.1.0.2', '>')) {
打开App,查看更多内容
随时随地看视频慕课网APP