<?php
$var
="pippo";

function 
printme(&$var) {
        echo 
"{$var}\n";
}

printme(serialize($var));
?>
Output
s:5:"pippo";