天天看點

php自動調用列印機直接列印,PHP自動列印到網絡列印機?

如何實作PHP的自動列印?不需彈出提示窗!

PHP]

var hkey_root,hkey_path,hkey_key

hkey_root=”HKEY_CURRENT_USER”

hkey_path=”\\Software\\Microsoft\\Internet Explorer\\PageSetup\\”

// 設定頁眉頁腳為空

function PageSetup_Null()

{

try{

var RegWsh = new ActiveXObject(“WScript.Shell”) ;

hkey_key=”header” ;

RegWsh.RegWrite(hkey_root+hkey_path+hkey_key,””) ;

hkey_key=”footer” ;

RegWsh.RegWrite(hkey_root+hkey_path+hkey_key,””) ;

}

catch(e){}

}

// 設定頁眉頁腳為預設值

function PageSetup_Default()

{

try{

var RegWsh = new ActiveXObject(“WScript.Shell”) ;

hkey_key=”header” ;

RegWsh.RegWrite(hkey_root+hkey_path+hkey_key,”&w&b頁碼,&p/&P”) ;

hkey_key=”footer” ;

RegWsh.RegWrite(hkey_root+hkey_path+hkey_key,”&u&b&d”) ;

}

catch(e){}

}

// 列印

function PrintPage()

{

PageSetup_Null() ;

window.print() ;

// PageSetup_Default() ;

}

document.write(‘

‘);

document.write(‘‘);

document.write(‘‘);

document.write(‘‘);

document.write(‘‘);

document.write(‘‘);

document.write(‘‘);

document.write(‘具體列印設定請聯系技術部‘);

document.write(‘‘);

[/PHP]

//一段實作網絡列印的代碼