Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

filling an array with values

Status
Not open for further replies.

kaptlid

Technical User
Nov 26, 2006
86
US
I could not find any documentation on this so I'll ask here if its even possible.

Say you have an array with keys 1-12 values are null so far. And then you have another array with the values array(1,3,7,8,10,11); How do you make another array to look like:
array(
[1] = '1',
[2] = ' ',
[3] = '3',
[4] = ' ',
[5] = ' ',
[6] = ' ',
[7] = '7',
[8] = '8',
[9] = ' ',
[10] = '10',
[11] = '11',
[12] = '',
)

Regards,
 
Whats a sparse array? I looked at it, but its confusing.
 
An array that has element keys from 1 to 10 is not sparse. An array that has some keys between 1 to 10 is sparse.

Look at those code examples where the array() invocation sets explicit keys. Hint: look for the string: =>



Want the best answers? Ask the best questions! TANSTAAFL!
 
I tried setting keys but it did not work...
for example: if (data[8] == 9) { data[9] = '9'; }
 
Code:
$data = array(2,4,5,7,9,10,11);
 
 $new = array();
  for($i = 1; $i <= 12; $i++) {$new[$i] = in_array($i, $data) ? $i : null; }
    
   echo '<pre>'; print_r($new);  echo '</pre>';

something like this...
 
Why are you jumping through all those hoops? Just do it when you initialize the array.

The link I posted includes the line:

$arr = array(5 => 1, 12 => 2);

which will create an array where $arr[5] = 1 and $arr[12] = 2. You should be able to generalize from there to add elements that are blank.



Want the best answers? Ask the best questions! TANSTAAFL!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top