Form feed is ASCII char 12 (0x0C)
I haven't tried but I guess, assuming you are sending plain text to the printer, it would look something like this:
<?php
$ff = chr(12);
$text = "Before form feed, $ff , after ff";
?>
If you wisk to add form feeds in a PRINT from a browser, I guess there may not be an easy way...