Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,870 questions

51,793 answers

573 users

How to create fixed size array in PHP

2 Answers

0 votes
$array = new SplFixedArray(4);

$array[0] = 45;
$array[1] = 87;
$array[2] = 99;
$array[3] = 982;

print_r($array);




/*
run:

SplFixedArray Object
(
    [0] => 45
    [1] => 87
    [2] => 99
    [3] => 982
)

*/

 



answered Jan 23, 2021 by avibootz
0 votes
$array = new SplFixedArray(4);

$array[0] = 45;
$array[1] = 'php';
$array[2] = 99;
$array[3] = 982;

print_r($array);




/*
run:

SplFixedArray Object
(
    [0] => 45
    [1] => php
    [2] => 99
    [3] => 982
)

*/

 



answered Jan 23, 2021 by avibootz

Related questions

1 answer 175 views
2 answers 166 views
166 views asked Jan 23, 2021 by avibootz
1 answer 126 views
1 answer 137 views
1 answer 78 views
1 answer 142 views
1 answer 97 views
...