I need EZPDF help

I can’t figure out how to output a pdf rather than have it stream in the browser itself.

I found this piece of code on their site, but it’s not working for me:

$pdfcode = $pdf->ezOutput();
$fp=fopen(’’,‘wb’);
fwrite($fp,$pdfcode);
fclose($fp);

Maybe someone experienced in this pdf creator class could help?