PHPスクリプトを使用してHTMLファイルを印刷するにはどうすればよいですか?プロンプトなしでバックグラウンドで実行したいだけです。私はこれに関する他の投稿を読みましたが、それでも何も機能していません。私はこれを試しました:
<?php
$dir = "temp"; // the folder that you are storing the file to be printed
$file = "file.html"; //change to proper file name
$file_dir = $dir.$file;
$server = "home_computer"; //name of the computer you are printing to on your network
$printer = "HP"; //printers shared name
$command = "print $file_dir /d:\\$server\\$printer";
exec($command) or die("File failed to print");
?>
この例はここにありますhttp://www.phpfreaks.com/forums/index.php/topic,207946.0.html