doudi2520 2018-09-26 23:28
浏览 81
已采纳

php max函数从数组返回最小值

this is my first post. sorry if i did something wrong...

anyways i have a file that gets updates by php and this is EXACTLY it:

31

127

131

124

144

142

133

133

9

0

22

18

i made this script in php:

$logContents = file_get_contents("logs/mainlog.txt");
$logitemArray = explode("
", $logContents);

echo max($logitemArray);

but it echos 9. why? it said in the php documentation that max() should return the biggest value in the array

thanks in advance

  • 写回答

2条回答 默认 最新

  • doumianfeng5065 2018-09-26 23:37
    关注

    explode() returns an array of strings, so they're being compared lexicographically. You need to convert them to numbers so that max() will compare them numerically.

    $logitemArray = array_map('intval', explode("
    ", $logContents));
    echo max($logitemArray);
    

    BTW, you can use the file() function to read a file directly into an array of lines, instead of using file_get_contents() followed by explode().

    $logitemArray = array_map('intval', file("logs/mainlog.txt", FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES));
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 收益高的广告联盟有哪些
  • ¥15 Android Studio webview 的使用问题, 播放器横屏全屏
  • ¥15 删掉jdk后重新下载,Java web所需要的eclipse无法使用
  • ¥15 uniapp正式环境中通过webapi将本地数据推送到设备出现的跨域问题
  • ¥15 xui建立节点,显示错误
  • ¥15 关于#单片机#的问题:开始、复位、十进制的功能可以实现,但是切换八进制的功能无法实现(按下按键也没有效果),把初始状态调成八进制,也是八进制可以实现但是切换到十进制不行(相关搜索:汇编语言|计数器)
  • ¥15 VINS-Mono或Fusion中feature_manager中estimated_depth是特征的深度还是逆深度?
  • ¥15 谷歌浏览器如何备份抖音网页数据
  • ¥15 分别有什么商家下面需要非常多的骑手为它工作?
  • ¥15 开机logo到Qt应用起来会黑屏将近两秒时间