php修改內容
A. 代碼小白,想要把php網頁中的某處文字內容做修改,但是在源碼後台看不懂啊,請技術大神幫忙,謝謝。
你需要下載一個notepad++,然後打開這個目錄里任意一個文件。
然後按ctrl+H
也可以直接使用在文件中替換,你只需要在替換為輸入框里寫入目標文字比如'LO萌娘社區'。
B. php修改html文件內容並保存 急急急
<?php
$file_content = file_get_contents('1.html');
$qiqi=str_replace("abc" , "000" ,$file_content);
$filename = '1.html';
$somecontent = $qiqi;
// 首先我們要確定文件存在並且可寫。
if (is_writable($filename)) {
// 在這個例子里,我們將使用添加模式打開$filename,
// 因此,文件指針將會在文件的開頭,
// 那就是當我們使用fwrite()的時候,$somecontent將要寫入的地方。
if (!$handle = fopen($filename, 'w')) {
echo "不能打開文件 $filename";
exit;
}
// 將$somecontent寫入到我們打開的文件中。
if (fwrite($handle, $somecontent) === FALSE) {
echo "不能寫入到文件 $filename";
exit;
}
echo "成功地將 $somecontent 寫入到文件$filename";
fclose($handle);
} else {
echo "文件 $filename 不可寫";
}
?>
把分給我吧,上面程序調試可以實現你的要求,我寫了半天呢!
C. 用PHP,怎麼修改txt文本內的內容
<?php
header("Content-type:text/html;charset=gbk");
if(isset($_POST['submit'])){
$editContent=$_POST['editContent'];//獲取輸入框的內容
$res=file_put_contents("test.txt",$editContent);//執行修改
if($res){
echo'內容修改成功!';
}else{
echo'內容修改失敗!';
}
}else{
echo'請做出修改....';
}
?>
<formmethod="post"action="">
<textareaname="editContent"cols="100"rows="15">
<?phpechofile_get_contents("test.txt")?>
</textarea>
<buttonname="submit">確認</button>
</form>
D. php如何修改html文內容
<body>
<h1><?php echo $text; ?><h1>
</body>
E. phpcms如何批量修改文章內容
我曾經批量替換過關鍵詞的部分欄位,方法如下:
在phpmaadmin中執行下行代碼:
sql">updatev9_newssetkeywords=replace(keywords,',','')//replace(欄位名,'原來的電話','更新後的電話')
你可以參考下,根據你的問題找到存放內容的那個表,然後批量的把電話更新下。
更新完了之後對phpcms的全站更新一次。
你試下可以不?祝你成功
F. 用PHP實現 讀取和修改文本文件內容的代碼
/**
* 讀文件
**/
function read_file($filename)
{
$fp = fopen($filename, "r") or die("couldn't open $filename");
$read = fread($fp, filesize($filename));
fclose($fp);
return $read;
}
/**
* 寫文件
**/
function write_file($filename, $buffer)
{
$fp = fopen($filename, "w") or die("couldn't open $filename");
flock( $fp, LOCK_EX );
$write = fputs($fp, $buffer);
flock( $fp, LOCK_UN );
fclose($fp);
return true;
}
/**
* 修改(只是追加內容)
**/
function append_to_file($filename, $buffer)
{
$fp = fopen($filename, "a") or die("couldn't open $filename");
flock( $fp, LOCK_EX );
fputs($fp, $buffer);
flock( $fp, LOCK_UN );
fclose($fp);
return true;
}
/**
* 測試
**/
$str = read_file('test.txt');
echo $str;
write_file('test2.txt', $str);
append_to_file('test2.txt', "ABCD");
其實,讀文件有更簡便的方法,你可以看看 file 和 file_get_contents 函數。
寫文件也有現成的 file_ put_ contents 函數。