<?php

function haricow($a = 'one') {
    var_dump($a);
    $a = 'two';
}

haricow();
haricow();
?>