Home >php教程 >php手册 >文件写入

文件写入

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-06-13 10:47:461098browse

//index.php 页面  
$incpeizhi="inc.peizhi.php"; 
$arr=array('mark_h','mark_w','mark_name','mark_url','mark_type'); 
extract($_POST); 
echo $mark_name; 
echo "
"; 
$configstr = ""; 
    foreach($arr as  $v) 
    {    
    echo $v;     
    ${$v} = str_replace("'","",${$v}); 
    $configstr .= "\${$v} = '".${$v}."';\r\n"; 
    } 
$configstr = "\r\n"; 
$fp=fopen($incpeizhi,"w"); 
fwrite($fp,$configstr); 
fclose($fp); 
 
//=======================  
//inc.peizhi.php 页面  
$mark_h = '200'; 
$mark_w = '150'; 
$mark_name = 'xinxi'; 
$mark_url = 'www.2cto.com'; 
$mark_type = '1'; 
?> 
//===================  
//form页面  

 
H:
 
W:
 
type:
 
url:
 
name:
 
 
 

摘自 chaojie2009的专栏
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn