get a set of values from an array

nikko

i have a set of arrays:

$nums = array(2,3,1); 
$data = array(11,22,33,44,55,66);

what i want to do is to get a set of $data array from each number of $nums array,

the output must be:

output:
2=11,22
3=33,44,55
1=66 

what i tried so far is to slice the array and remove the sliced values from an array but i didn't get the correct output.

for ($i=0; $i < count($nums); $i++) { 
    $a = array_slice($data,0,$nums[$i]);
    for ($x=0; $x < $nums[$i]; $x++) { 
        unset($data[0]);
    }
}
Eddie

You can array_shift to remove the first element.

$nums = array(2,3,1); 
$data = array(11,22,33,44,55,66);

foreach( $nums as $num ){
    $t = array();
    for ( $x = $num; $x>0; $x-- ) $t[] = array_shift($data);

    echo $num . " = " . implode(",",$t) . "<br />";
}

This will result to:

2 = 11,22
3 = 33,44,55
1 = 66

この記事はインターネットから収集されたものであり、転載の際にはソースを示してください。

侵害の場合は、連絡してください[email protected]

編集
0

コメントを追加

0

関連記事

分類Dev

Get values from array and using the values in a program

分類Dev

phpexcel can't get values from array

分類Dev

How to get the combination of array values from nested arrays in an array of objects

分類Dev

CallKit call block set values from array not working

分類Dev

Most efficient way to get values from a dictionary into a set

分類Dev

how to get SUM of a set of values from a table then the MAX of those values and echo the 5 highest values

分類Dev

How to get distinct values from an array of fetch API output

分類Dev

How to get distinct values from an array in mongoDB and group them by ID

分類Dev

Use XPath with condition to get array values from XML

分類Dev

How to get the values of a column from a table in jQuery into a multidimentional array

分類Dev

Get a date value from an array and set it into a cell in Spreadsheet

分類Dev

Get string from array or set default value in a one liner

分類Dev

Extracting values from array

分類Dev

Fill an Array With values from that array

分類Dev

Get Values from String

分類Dev

PHP - Get all values with specific array key from multidimensional array with unknown depth

分類Dev

How to get text values to an array?

分類Dev

Get random items from hashtable but the total of values has to be equal to a set number

分類Dev

How to get values from database to set valies ina list view according to alpherbatical order

分類Dev

How to get values in array of array in angular?

分類Dev

Set specific values to zero in numpy array

分類Dev

Combine array form set of values and keys

分類Dev

Trying to set multiple array variables' values in Backstretch

分類Dev

store values from a file into an array

分類Dev

Remove specific values from an array

分類Dev

Paste values from array into string

分類Dev

Score calculation from array values

分類Dev

Unique values from array in column

分類Dev

How to get common values from 4 multidimensional arrays using array_intersect

Related 関連記事

  1. 1

    Get values from array and using the values in a program

  2. 2

    phpexcel can't get values from array

  3. 3

    How to get the combination of array values from nested arrays in an array of objects

  4. 4

    CallKit call block set values from array not working

  5. 5

    Most efficient way to get values from a dictionary into a set

  6. 6

    how to get SUM of a set of values from a table then the MAX of those values and echo the 5 highest values

  7. 7

    How to get distinct values from an array of fetch API output

  8. 8

    How to get distinct values from an array in mongoDB and group them by ID

  9. 9

    Use XPath with condition to get array values from XML

  10. 10

    How to get the values of a column from a table in jQuery into a multidimentional array

  11. 11

    Get a date value from an array and set it into a cell in Spreadsheet

  12. 12

    Get string from array or set default value in a one liner

  13. 13

    Extracting values from array

  14. 14

    Fill an Array With values from that array

  15. 15

    Get Values from String

  16. 16

    PHP - Get all values with specific array key from multidimensional array with unknown depth

  17. 17

    How to get text values to an array?

  18. 18

    Get random items from hashtable but the total of values has to be equal to a set number

  19. 19

    How to get values from database to set valies ina list view according to alpherbatical order

  20. 20

    How to get values in array of array in angular?

  21. 21

    Set specific values to zero in numpy array

  22. 22

    Combine array form set of values and keys

  23. 23

    Trying to set multiple array variables' values in Backstretch

  24. 24

    store values from a file into an array

  25. 25

    Remove specific values from an array

  26. 26

    Paste values from array into string

  27. 27

    Score calculation from array values

  28. 28

    Unique values from array in column

  29. 29

    How to get common values from 4 multidimensional arrays using array_intersect

ホットタグ

アーカイブ