我怎麼能打印通過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
@Smamatti這些功能比查克·諾里斯老。沒有冒犯查克。 –
這是真的,但我沒有找到任何新版本,他們應該工作,他們沒有被標記爲已棄用。那麼你的觀點是什麼? – Smamatti
這是winblows。對於正常的操作系統,你需要使用exec函數執行'lpr',例如... –