<?php

	function rand_func_name($rand_name) 
	{
		return $rand_name + 1;
	}
	
	if (rand_func_name(0) > 0) {
		$enter_the_new_statement;
	}
?>
