Page 1 of 1

What is performed by the following PHP code?
Posted: Sun May 15, 2022 12:39 pm
by answerhappygod
What is performed by the following PHP code?

<?php
$my_Array = array();
$my_Array[0] = 'a';
$my_Array[1] = 'b';
$my_Array[2] = 'c';
?>