Warning: Undefined array key "HTTP_ACCEPT_LANGUAGE" in /www/wwwroot/01xj.net/wp-content/plugins/wp-ue/main.php on line 13
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]

//一段实现网络打印的代码

您可能还喜欢...

发表回复