dspym82000 2015-11-05 04:10 采纳率: 100%
浏览 90

字符串中的操作值

I have this in PHP:

$arreglo = array('128 gigas', '250 gigas', '220 gigas');
foreach ($arreglo as $key => $value) {

}

Is it possible to operate these values in the string? like 128 + 250 + 220, using foreach ? Thank you in advance.

  • 写回答

9条回答 默认 最新

  • duanli0162 2015-11-05 04:13
    关注

    If the strings always follow that format, then yes. You could explode the strings into arrays:

    $a = explode(' ', $string); // Now $a[0] contains the number
    

    So, for your code:

    $arreglo = array('128 gigas', '250 gigas', '220 gigas');
    $total = 0;
    foreach ($arreglo as $value) { // $key not necessary in this case
        $a = explode(' ', $value);
        $total += $a[0]; // PHP will take care of the type conversion
    }
    

    Or, if you are feeling creative:

    $func = function($s) {
        $a = explode(' ', $s);
        return $a[0];
    };
    
    $arreglo = array('128 gigas', '250 gigas', '220 gigas');
    $numbers = array_map($func, $arreglo);
    $total = array_sum($numbers);
    
    评论

报告相同问题?

悬赏问题

  • ¥100 set_link_state
  • ¥15 虚幻5 UE美术毛发渲染
  • ¥15 CVRP 图论 物流运输优化
  • ¥15 Tableau online 嵌入ppt失败
  • ¥100 支付宝网页转账系统不识别账号
  • ¥15 基于单片机的靶位控制系统
  • ¥15 真我手机蓝牙传输进度消息被关闭了,怎么打开?(关键词-消息通知)
  • ¥15 装 pytorch 的时候出了好多问题,遇到这种情况怎么处理?
  • ¥20 IOS游览器某宝手机网页版自动立即购买JavaScript脚本
  • ¥15 手机接入宽带网线,如何释放宽带全部速度