douling8087 2015-08-07 09:50
浏览 36
已采纳

如何在laravel 4.2中将周日转换为小时?

1-If any user enter 1w2d in input field.

2-Value in this input field should get converted to total hours.

3After that I have to insert these total hours in database.

4When I will fetch total hours from database it should return 1w2d.

Possible notation are that there is one Input field named as Estimated time where user can enter 1w2d or 1W2D .This should get converted into total hours.After that I have to send it into database.

*I am feeling helpless.I don't know what to do.I know how to convert week into hours but don't have any idea that how to convert 1w2d into hours.

  • 写回答

1条回答 默认 最新

  • dream6120 2015-08-07 11:33
    关注
    <?php
    
    function convertWDHtoHours($data) {
    
      preg_match_all('/(\d+[wW]+|\d+[dD]+|\d+[hH]+)/', $data, $matches);
      $hours = 0;
      foreach($matches[0] AS $match) {
        switch(true) {
          case preg_match('/\d+[hH]+/', $match) :
            $hours += (int)$match;
            break;
    
          case preg_match('/\d+[dD]+/', $match) :
            $hours += (int)$match*24;
            break;
    
          case preg_match('/\d+[wW]+/', $match) :
            $hours += (int)$match*24*7;
            break;
        }
      }
      return $hours;
    }
    
    print "23h => ".convertWDHtoHours('23h')."<br/>";
    print "20d => ".convertWDHtoHours('20d')."<br/>";
    print "2W => ".convertWDHtoHours('2W')."<br/>";
    print "1D2h => ".convertWDHtoHours('1D2h')."<br/>";
    print "1w2H => ".convertWDHtoHours('1w2H')."<br/>";
    print "1w2d => ".convertWDHtoHours('1w2d')."<br/>";
    
    ?>
    

    Here is result:

    http://codepad.viper-7.com/Ioj02x

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 GDI处理通道视频时总是带有白色锯齿
  • ¥20 用雷电模拟器安装百达屋apk一直闪退
  • ¥15 算能科技20240506咨询(拒绝大模型回答)
  • ¥15 自适应 AR 模型 参数估计Matlab程序
  • ¥100 角动量包络面如何用MATLAB绘制
  • ¥15 merge函数占用内存过大
  • ¥15 Revit2020下载问题
  • ¥15 使用EMD去噪处理RML2016数据集时候的原理
  • ¥15 神经网络预测均方误差很小 但是图像上看着差别太大
  • ¥15 单片机无法进入HAL_TIM_PWM_PulseFinishedCallback回调函数