How to comma separate the values of an array for display

后端 未结 3 755
南方客
南方客 2021-01-02 16:30

I have searched the PHP.net site and originally thought of some use for the list() function but doesn\'t seem to accomplish the goal:

I have an unknown

相关标签:
3条回答
  • 2021-01-02 17:14

    You can make use of list() function if you know there are only 3 values.

    $array = array('Life', 'living', 'Health');
    list($life, $living, $health) = $array;
    
    echo $life;
    echo $living;
    echo $health;
    

    Note - you can make use of implode function as well.

    0 讨论(0)
  • 2021-01-02 17:15

    http://us.php.net/manual/en/function.implode.php

    echo implode(", ", $array);
    
    0 讨论(0)
  • 2021-01-02 17:28

    You can simply use PHP's implode function for this purpose as follows:

    $string = implode(',', array(1,2,3,4,5));
    
    0 讨论(0)
提交回复
热议问题