PHP
$chrw = $this->GetArrStringWidth($chars, '', '', 0, true);array_walk($chrw, array($this, 'getRawCharWidth'));$maxchwidth = max($chrw);
報這樣的錯誤 max() [function.max]: Array must contain at least one element
我在max函數之前輸出$chrw 有內容,是array([1]=>6.35 [2]=>6.35 [3]=>6.35)
回複討論(解決方案)
如果我寫max(array(6.35,6.35,6.35)),則錯誤消失
大神們知道怎麼回事嗎??為啥max函數識別不出這個參數
這是 tcpdf類的代碼,我本地沒有報錯,但是在伺服器上就報錯
$chrw = $this->GetArrStringWidth($chars, '', '', 0, true);array_walk($chrw, array($this, 'getRawCharWidth'));$maxchwidth = max($chrw);
報這樣的錯誤 max() [function.max]: Array must contain at least one element
我在max函數之前輸出$chrw 有內容,是array([1]=>6.35 [2]=>6.35 [3]=>6.35)
max函數裡肯定是可以放變數的,報錯說明裡面的數組有問題,array([1]=>6.35 [2]=>6.35 [3]=>6.35)
這個數組我怎麼看都感覺不對啊
Array must contain at least one element
陣列必須包含至少一種元素
max函數裡肯定是可以放變數的,報錯說明裡面的數組有問題,array([1]=>6.35 [2]=>6.35 [3]=>6.35)
這個數組我怎麼看都感覺不對啊
不好意思,那是我手寫的,是這樣的
Array
(
[0] => 6.35
[1] => 6.35
[2] => 6.35
)
Array must contain at least one element
陣列必須包含至少一種元素
數組是這樣的
Array
(
[0] => 6.35
[1] => 6.35
[2] => 6.35
)
數組裡面有元素啊
var_dump($chrw)看看是什麼
var_dump($chrw)看看是什麼
array(3) { [0]=> float(6.35) [1]=> float(6.35) [2]=> float(6.35) }
php 是不會弄錯的,他說是空的那麼就是空的了!
$chrw = $this->GetArrStringWidth($chars, '', '', 0, true);
var_dump($chrw);
array_walk($chrw, array($this, 'getRawCharWidth'));
var_dump($chrw);
$maxchwidth = max($chrw);
分別看一下
php 是不會弄錯的,他說是空的那麼就是空的了!
$chrw = $this->GetArrStringWidth($chars, '', '', 0, true);
var_dump($chrw);
array_walk($chrw, array($this, 'getRawCharWidth'));
var_dump($chrw);
$maxchwidth = max($chrw);
分別看一下
我按照您說的做了,分別看了下,但是輸出的都是
array(3) { [0]=> float(6.35) [1]=> float(6.35) [2]=> float(6.35) }
php 是不會弄錯的,他說是空的那麼就是空的了!
$chrw = $this->GetArrStringWidth($chars, '', '', 0, true);
var_dump($chrw);
array_walk($chrw, array($this, 'getRawCharWidth'));
var_dump($chrw);
$maxchwidth = max($chrw);
分別看一下
array(3) { [0]=> float(6.35) [1]=> float(6.35) [2]=> float(6.35) } array(3) { [0]=> float(6.35) [1]=> float(6.35) [2]=> float(6.35) }
還有奇怪的,max雖然報錯了,但是我 echo $maxchwidth 竟然是6.35
靈異事件
而且本地沒錯,伺服器錯
你上面的var_dump是否都在本地測試啊?要在出錯的伺服器上測試啊
還有奇怪的,max雖然報錯了,但是我 echo $maxchwidth 竟然是6.35
那你就要檢查是否還有別的地方用了max(),說不準是其他地方報錯
靈異事件
而且本地沒錯,伺服器錯
你上面的var_dump是否都在本地測試啊?要在出錯的伺服器上測試啊
恩,就是在伺服器上測試的
還有奇怪的,max雖然報錯了,但是我 echo $maxchwidth 竟然是6.35
那你就要檢查是否還有別的地方用了max(),說不準是其他地方報錯
max() [function.max]: Array must contain at least one elementError File: \includes\plugin\tcpdf\tcpdf.php at 6301 line.
>> report_issue
>> 返回上一頁
還有奇怪的,max雖然報錯了,但是我 echo $maxchwidth 竟然是6.35
那你就要檢查是否還有別的地方用了max(),說不準是其他地方報錯
指定行數了就說在這一行
max計算前用 array_values($chrw) 處理下數組試試
謝謝大家,不知道怎麼回事,今天自己就好使了