printer_abort

(PECL)

printer_abort -- プリンタのスプールファイルを削除する

説明

void printer_abort ( resource handle )

この関数は、プリンタのスプールファイルを削除します。

handle には、プリンタへの有効なハンドルを 指定する必要があります。

例 1. printer_abort() の例

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