(No version information available, might be only in CVS)
printer_abort — プリンタのスプールファイルを削除する
この関数は、プリンタのスプールファイルを削除します。
printer_handle には、プリンタへの有効なハンドルを指定する必要があります。
値を返しません。
例1 printer_abort() の例
<?php
$handle = printer_open();
printer_abort($handle);
printer_close($handle);
?>