奇怪問題 max函數識別不了參數

來源:互聯網
上載者:User
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) 處理下數組試試

謝謝大家,不知道怎麼回事,今天自己就好使了

  • 相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.