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 关于#windows#的问题:怎么用WIN 11系统的电脑 克隆WIN NT3.51-4.0系统的硬盘
  • ¥15 matlab有关常微分方程的问题求解决
  • ¥15 perl MISA分析p3_in脚本出错
  • ¥15 k8s部署jupyterlab,jupyterlab保存不了文件
  • ¥15 ubuntu虚拟机打包apk错误
  • ¥199 rust编程架构设计的方案 有偿
  • ¥15 回答4f系统的像差计算
  • ¥15 java如何提取出pdf里的文字?
  • ¥100 求三轴之间相互配合画圆以及直线的算法
  • ¥100 c语言,请帮蒟蒻写一个题的范例作参考