PHP array_fill() Function
Complete PHP Array Reference
Definition and Usage
The array_fill() function returns an array filled with the values you describe.
Syntax
array_fill(start,number,value)
|
| Parameter |
Description |
| start |
Required. A numeric value, specifies the starting index of the key |
| number |
Required. A numeric value, specifies the number of entries |
| value |
Required. Specifies the value to be inserted |
Example
<?php
$a=array_fill(2,3,"Dog");
print_r($a);
?>
|
The output of the code above will be:
Array ( [2] => Dog [3] => Dog [4] => Dog )
|
Complete PHP Array Reference
Reliable, affordable, feature-rich web hosting!
Take the uncertainty out of Web hosting and let GoDaddy.com
put service, performance and value back in. No matter which
hosting type or plan you choose, your site receives 24/7
maintenance and protection in our world-class data center. Plus,
you get the expert, friendly service you deserve, from the
world's largest hostname provider.
With three plans to choose from and prices starting at
just $3.99, GoDaddy.com is sure to have a plan that's
right-sized and right-priced just for you!
All plans feature FREE 24x7 setup, FREE 24x7 monitoring, best-of-breed routers, firewalls and servers, 24x7 onsite physical security
and access to our exclusive Metropolis Hosting Community.
Save 10% on web hosting - Enter code HTML at checkout.
Visit GoDaddy.com
|