Help for this page

Select Code to Download


  1. or download this
    $one=new Array_Like_Object(1); #set all elements to one<br>
    $two=new Array_Like_Object(2); #set all elements to two
    
    $three = $one + $two;
    
  2. or download this
    $three->Read(14); #return element 14
    $three->Write(14,3); #set element 14 to 3
    
  3. or download this
    $three(14); #return element 14
    $three(14)=3; #set element 14 to 3