为了账号安全,请及时绑定邮箱和手机立即绑定

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

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

PHP
慕标5832272 2022-06-11 17:09:21
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 Versionif(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;    }}
查看完整描述

1 回答

?
慕姐8265434

TA贡献1813条经验 获得超2个赞

查看index.php通常定义版本的位置。例如


<?php

// Version

define('VERSION', '2.3.0.2.3');

您可以像这样添加版本定义


define('VERSION', 'your-version-number');

// Check Version

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


查看完整回答
反对 回复 2022-06-11
  • 1 回答
  • 0 关注
  • 234 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信