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,907 questions

51,839 answers

573 users

How to fill an array with 1 and 0 in random locations with PHP

1 Answer

0 votes
function FillArrayWithRandom1and0(&$array, $arraySize) {
    // Seed the random number generator
    srand(time());
    
    for ($i = 0; $i < $arraySize; $i++) {
        $array[] = rand(0, 1);
    }  
}
 
$arraySize = 10;
 
// Initialize an empty array
$array = array();
 
FillArrayWithRandom1and0($array, $arraySize);
 
print_r($array);
 
 
 
/*
run:
 
Array
(
    [0] => 0
    [1] => 1
    [2] => 1
    [3] => 0
    [4] => 1
    [5] => 0
    [6] => 0
    [7] => 0
    [8] => 0
    [9] => 1
)
 
*/

 



answered Jan 24, 2025 by avibootz
edited Jan 24, 2025 by avibootz

Related questions

1 answer 58 views
1 answer 83 views
1 answer 80 views
1 answer 77 views
1 answer 75 views
...