2020-04-14 09:50:52 1366次浏览 2条回答 0 悬赏 10 金钱
Warning: fopen(PHP淮北的个人网站--PHP10086.com1.doc): failed to open stream: Invalid argument in D:\root\PHPTutorial\WWW\test\word.php on line 19

Warning: fwrite() expects parameter 1 to be resource, boolean given in D:\root\PHPTutorial\WWW\test\word.php on line 20

Warning: fclose() expects parameter 1 to be resource, boolean given in D:\root\PHPTutorial\WWW\test\word.php on line 21

Warning: fopen(PHP淮北的个人网站--PHP10086.com2.doc): failed to open stream: Invalid argument in D:\root\PHPTutorial\WWW\test\word.php on line 19

Warning: fwrite() expects parameter 1 to be resource, boolean given in D:\root\PHPTutorial\WWW\test\word.php on line 20

Warning: fclose() expects parameter 1 to be resource, boolean given in D:\root\PHPTutorial\WWW\test\word.php on line 21

Warning: fopen(PHP淮北的个人网站--PHP10086.com3.doc): failed to open stream: Invalid argument in D:\root\PHPTutorial\WWW\test\word.php on line 19

Warning: fwrite() expects parameter 1 to be resource, boolean given in D:\root\PHPTutorial\WWW\test\word.php on line 20

Warning: fclose() expects parameter 1 to be resource, boolean given in D:\root\PHPTutorial\WWW\test\word.php on line 21
<?php
class word{ 
	function start(){
		ob_start();
		echo '<html xmlns:o="urn:schemas-microsoft-com:office:office"
		xmlns:w="urn:schemas-microsoft-com:office:word"
		xmlns="http://www.w3.org/TR/REC-html40">';
	}
	function save($path){		  
		echo "</html>";
		$data = ob_get_contents();
		ob_end_clean();
		  
		$this->wirtefile ($path,$data);
	}
	  
	function wirtefile ($fn,$data)
	{
		$fp=fopen($fn,"wb");
		fwrite($fp,$data);
		fclose($fp);
	}
}

$html = ' 
	<table width=600 cellpadding="6" cellspacing="1" bgcolor="#336699"> 
	<tr bgcolor="White"> 
	 <td>PHP10086</td> 
	 <td><a href="http://www.php10086.com" target="_blank" >http://www.php10086.com</a></td> 
	</tr> 
	<tr bgcolor="red"> 
	 <td>PHP10086</td> 
	 <td><a href="http://www.php10086.com" target="_blank" >http://www.php10086.com</a></td> 
	</tr> 
	<tr bgcolor="White"> 
	 <td colspan=2 > 
	 PHP10086<br> 
	 最靠谱的PHP技术博客分享网站 
	 <img src="http://www.php10086.com/wp-content/themes/WPortal-Blue/images/logo.gif"> 
	 </td> 
	</tr> 
	</table> 
'; 
  
//批量生成 
for($i=1;$i<=3;$i++){ 
	$word = new word(); 
	$word->start(); 
	//$html = "aaa".$i; 
	$wordname = 'PHP淮北的个人网站--PHP10086.com'.$i.".doc"; 
	echo $html; 
	$word->save($wordname); 
	ob_flush();//每次执行前刷新缓存 
	flush(); 
}
您需要登录后才可以回答。登录 | 立即注册
PHP学院的中学生
副总裁

PHP学院的中学生

注册时间:2018-10-23
最后登录:2024-04-07
在线时长:168小时1分
  • 粉丝29
  • 金钱4730
  • 威望30
  • 积分6710

热门问题