printer_abort

(PECL)

printer_abort -- Deletes the printer's spool file

Description

void printer_abort ( resource handle )

This function deletes the printers spool file.

handle must be a valid handle to a printer.

例子 1. printer_abort() example

<?php
$handle
= printer_open();
printer_abort($handle);
printer_close($handle);
?>

add a note add a note User Contributed Notes
There are no user contributed notes for this page.