<?php

function test($i) {
	echo $i;
	if ($i < 5) { test($i + 1);  }
	echo $i;	
}

test(0);