PHP Basics Learning Mode

What is the best way to iterate through the $myarray array, assuming you want to modify the value of each element as you do?

<?php
    $myarray = array ("My String", "Another String", "Hi, Mom!");
?>