<?php

function p(&$b){
 $b = $b+1;
}

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

?>