星期一, 06月 2nd, 2008
<?
$a="<font color=red>这是一个带HTML标识de字串</font>";
$a=strip_tags($a);
print $a;
?>
2
<?
$a="<font color=red>这是一个带HTML标识de字串</font>";
ereg_replace("^<. >$", "", $a);
print $a;
?>
3 保留原有内容
<?
$a="<font color=red>这是一个带HTML标识de字串</font>";
ereg_replace("<", "<", $a);
ereg_replace(">", ">", $a);
print $a;
?>
Tags: HT, l语, ML, TM, 何去, 去掉, 如何, 掉文, 文章, 法, 的H, 章里, 语法, 里的
Posted in PHP编程 | No Comments »
星期一, 06月 2nd, 2008
auto=1立即PRINT,否则timeOut毫秒后PRINT,如printPage(0,5000);
function printPage($auto=1,$timeOut=10000) {
if ($auto == 1) {
echo ”
< SCRIPT LANGUAGE=”JavaScript” >
< !– Begin
if (window.print) {
window.print();
}
else {
alert(’No printer driver in your PC’);
}
// End — >
< /script >
n”;
}
else {
echo ”
< SCRIPT LANGUAGE=”JavaScript” >
< !– Begin
if (window.print) {
setTimeout(’printCheck()’,'$timeOut’);
}
else {
alert(’No printer driver in your PC’);
}
function printCheck() {
agree = confirm(’OK to print now?’);
if (agree) window.print();
}
// End — >
< /script >
n”;
}
}
Tags: HP, JS, PH, P里, S打, 函数, 印函, 在P, 打印, 数, 用在, 的J, 里的
Posted in PHP编程 | No Comments »