doupeng3501 2016-06-24 18:49
浏览 63
已采纳

PHP - 在list()参数中将字符串转换为int?

I am refining my code and I have a couple of spots where I need to cast strings as integer but the limitations of the list() function are dissuading me from using list(). Specific example:

$x = '12-31-2010';

$explode = explode("-", $x);

// Need to do the following because e.g. echo gettype($explode[0]) ---> string

$month = (int)$explode[0];
$day   = (int)$explode[1];
$year  = (int)$explode[2];

What I would like to do (but get a fatal error) to make things a little more tidy:

list((int)$month, (int)$day, (int)$year) = explode("-", $x); // I want echo(gettype) ---> integer for each variable

Is there any way to do this or is the best I can do the following?

list($month, $day, $year) = explode("-", $x);

$month = (int)$month;
$day   = (int)$day;
$year  = (int)$year;
  • 写回答

2条回答 默认 最新

  • doulu8415 2016-06-24 18:54
    关注

    By this reference:-

    how to convert array values from string to int?

    you can do it like below:-

    list($month, $day, $year) = array_map('intval', explode('-', $x));
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 电脑和power bi环境都是英文如何将日期层次结构转换成英文
  • ¥15 DruidDataSource一直closing
  • ¥20 气象站点数据求取中~
  • ¥15 如何获取APP内弹出的网址链接
  • ¥15 wifi 图标不见了 不知道怎么办 上不了网 变成小地球了
  • ¥50 STM32单片机传感器读取错误
  • ¥50 power BI 从Mysql服务器导入数据,但连接进去后显示表无数据
  • ¥15 (关键词-阻抗匹配,HFSS,RFID标签)
  • ¥50 sft下载大文阻塞卡死
  • ¥15 机器人轨迹规划相关问题