警告:在第162行的PHP中除以零

时间:2017-09-30 07:15:41

标签: php

我的网站上出现此错误:

  

ERR(3):警告:除以0   的public_html /应用/代码/社区/ VES / PdfProProcessor / PDF /包括/ table_frame_reflower.cls.php   在第162行

在该行我有以下代码:

allprojects {
    repositories {
        jcenter()
    }
}

我怎么能解决这个错误?

2 个答案:

答案 0 :(得分:1)

试试这个

  $increment = 0;
  $max_width or $max_width=1;

  // Case 1:
  if ( $absolute_used == 0 && $percent_used == 0 ) {
    $increment = $width - $min_width;

    foreach (array_keys($columns) as $i) {
      $cellmap->set_column_width($i, $columns[$i]["min-width"] + $increment * ($columns[$i]["max-width"] / $max_width));
    }
    return;
  }

答案 1 :(得分:1)

您的$max_width变量未分配,或保持零值。 如果情况不是这样,请尝试在if语句中回显此变量的值。