I have an array with the values $arr = array ("1.", "2.") and would like to add new values to this array where the new values will be the existing values with an added value.
Example: $arr = array("1.", "2.") should transforms into $arr = array ("1.", "2.", "1.1", "2.1") .