dongtu1357 2012-06-05 09:46
浏览 35
已采纳

如果版本大于1.5.1.3,则进行Opencart测试

How would I add an IF statement to check if the opencart version is greater than 1.5.1.3?

This is defined in the index.php as:

// Version
define('VERSION', '1.5.0');

I have tried: if((int)VERSION >= '1.5.1.3'){ although when I convert this into an int it becomes empty.

Also I tried this with the same effect:

$this->data['oc_version'] = (int)str_replace('.', '', VERSION);
if($this->data['oc_version'] >= 1513){

Do I need to convert this into an int to correctly perform greater/less than calculations?

  • 写回答

2条回答 默认 最新

  • dongshai2022 2012-06-05 13:15
    关注
    if(version_compare(VERSION, '1.5.1.3', '>')) {
        // CODE HERE IF HIGHER
    } else {
        // CODE HERE IF LOWER
    }
    

    Though the 1.5.1.3 branch actually goes up to 1.5.1.3.1 so I'm guessing you want it to be that

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 优质github账号直接兑换rmb,感兴趣伙伴可以私信
  • ¥15 错误(10048): “调用exui内部功能”库命令的参数“参数4”不能接受空数据。怎么解决啊
  • ¥15 安装svn网络有问题怎么办
  • ¥15 Python爬取指定微博话题下的内容,保存为txt
  • ¥15 vue2登录调用后端接口如何实现
  • ¥65 永磁型步进电机PID算法
  • ¥15 sqlite 附加(attach database)加密数据库时,返回26是什么原因呢?
  • ¥88 找成都本地经验丰富懂小程序开发的技术大咖
  • ¥15 如何处理复杂数据表格的除法运算
  • ¥15 如何用stc8h1k08的片子做485数据透传的功能?(关键词-串口)