Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
サーバーに接続されたプリンターを使用して、PHPアプリケーションで何かを印刷する必要があります。
PHP 4.0にはphp_printer.dll存在していましたが、廃止されました。
php_printer.dll
PHP 5でこれをどのように行うことができるかについて誰かがアイデアや提案を持っていますか?
出力をファイルに書き込んでからexec、正しいコマンドでファイルを印刷するために使用できます (オペレーティング システムによって異なります)。
exec
例:
exec('lpr /some/path/to/the/file', $output); // linux exec('print C:\again\a\path', $output); // windows
おそらく、php ユーザーに印刷権限があるかどうかを確認する必要があります。