PHP diziden bir sayısını görüntülemek

0 Cevap

Hello I would like to have a code that displays randomly from an array a number and displays it. For example this code

<?php
$firstquarter = array(1 => 'January', 'February', 'March');
print_r($firstquarter);
?>

döndürür

Array
(
    [1] => January
    [2] => February
    [3] => March
)

Bunun yerine, ben göstermek istiyorum

0 Cevap