Deprecated: Implicit conversion from float xx.xxxx to int loses precision excel_reader2.php line 922
P粉654894952
P粉654894952 2024-01-04 12:03:28
0
1
534

Operating system: Windows 11 PHP version 8.1.6

wrong information: DEPRECATED: Implicit conversion from float 65.03846153846153 to int loses precision C:xampphtdocssatiimportexcel_reader2.php line 922

public function __construct($file='',$store_extended_info=true,$outputEncoding='') {

  $this->_ole = new OLERead();
  $this->setUTFEncoder('iconv');
  if ($outputEncoding != '') { 
    $this->setOutputEncoding($outputEncoding);
  }
  for ($i=1; $i<245; $i++) {
    $name = strtolower(( (($i-1)/26>=1)?chr(($i-1)/26+64):'') . chr(($i-1)%26+65));  //line 922
    $this->colnames[$name] = $i;
    $this->colindexes[$i] = $name;
  }
  $this->store_extended_info = $store_extended_info;
  if ($file!="") {
    $this->read($file);
  }
}

Does anyone have a solution to this problem?

P粉654894952
P粉654894952

reply all(1)
P粉563831052

Yes, It has been deprecated

You should convert the result of the calculation to an integer when passing to chr():

strtolower(
    (
        ($i-1)/26>=1
            ? chr((int) ($i-1)/26+64)
            : ''
    )
    . chr((int) ($i-1)%26+65)
)
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!