<?php

function p(&$b){
return $b;
}

$a = 10;

printf("%d", p($a));

?>