當前位置:首頁 » 編程語言 » php文件修改

php文件修改

發布時間: 2022-09-14 13:12:51

Ⅰ 怎麼用php代碼來修改php的文件

修改注冊表達到禁止查看源文件?
點開始菜單運行
輸入
確定即可
reg
add
"hkey_current_user\software\policies\microsoft\internet
explorer\restrictions"
/v
"noviewsource"
/d
1
/t
reg_dword
/f

Ⅱ php如何修改文件中的配置信息~呢

對形如config.php文件的讀取,修改等操作的代碼,需要的朋友可以參考下

復制代碼代碼如下:

<?php
$name="admin";//kkkk
$bb='234';
$db=4561321;
$kkk="admin";
?>

函數定義:
配置文件數據值獲取:function getconfig($file, $ini, $type="string")
配置文件數據項更新:function updateconfig($file, $ini, $value,$type="string")
調用方式:

復制代碼代碼如下:

getconfig("./2.php", "bb");//
updateconfig("./2.php", "kkk", "admin");

復制代碼代碼如下:

<?php

//配置文件數據值獲取。
//默認沒有第三個參數時,按照字元串讀取提取''中或""中的內容
//如果有第三個參數時為int時按照數字int處理。
function getconfig($file, $ini, $type="string")
{
if ($type=="int")
{
$str = file_get_contents($file);
$config = preg_match("/" . $ini . "=(.*);/", $str, $res);
Return $res[1];
}
else
{
$str = file_get_contents($file);
$config = preg_match("/" . $ini . "=\"(.*)\";/", $str, $res);
if($res[1]==null)
{
$config = preg_match("/" . $ini . "='(.*)';/", $str, $res);
}
Return $res[1];
}
}

//配置文件數據項更新
//默認沒有第四個參數時,按照字元串讀取提取''中或""中的內容
//如果有第四個參數時為int時按照數字int處理。
function updateconfig($file, $ini, $value,$type="string")
{
$str = file_get_contents($file);
$str2="";
if($type=="int")
{
$str2 = preg_replace("/" . $ini . "=(.*);/", $ini . "=" . $value . ";", $str);
}
else
{
$str2 = preg_replace("/" . $ini . "=(.*);/", $ini . "=\"" . $value . "\";",$str);
}
file_put_contents($file, $str2);
}

//echo getconfig("./2.php", "bb", "string");
getconfig("./2.php", "bb");//
updateconfig("./2.php", "kkk", "admin");
//echo "<br/>".getconfig("./2.php", "name","string");

?>

復制代碼代碼如下:

//完善改進版

/**
* 配置文件操作(查詢了與修改)
* 默認沒有第三個參數時,按照字元串讀取提取''中或""中的內容
* 如果有第三個參數時為int時按照數字int處理。
*調用demo
$name="admin";//kkkk
$bb='234';

$bb=getconfig("./2.php", "bb", "string");
updateconfig("./2.php", "name", "admin");
*/
function get_config($file, $ini, $type="string"){
if(!file_exists($file)) return false;
$str = file_get_contents($file);
if ($type=="int"){
$config = preg_match("/".preg_quote($ini)."=(.*);/", $str, $res);
return $res[1];
}
else{
$config = preg_match("/".preg_quote($ini)."=\"(.*)\";/", $str, $res);
if($res[1]==null){
$config = preg_match("/".preg_quote($ini)."='(.*)';/", $str, $res);
}
return $res[1];
}
}

function update_config($file, $ini, $value,$type="string"){
if(!file_exists($file)) return false;
$str = file_get_contents($file);
$str2="";
if($type=="int"){
$str2 = preg_replace("/".preg_quote($ini)."=(.*);/", $ini."=".$value.";",$str);
}
else{
$str2 = preg_replace("/".preg_quote($ini)."=(.*);/",$ini."=\"".$value."\";",$str);
}
file_put_contents($file, $str2);
}

Ⅲ php怎麼修改php文件

只能通過寫入文件的方式來重置配置項,請參照天南(QQ:46926125)提供的DEMO: #DEMO Code ---a.php<?php
return array(
'db_host'=>'localhost',
'db_pwd'=>'admin888',
)
?> #DEMO Code ---b.php<?php
$k=include_once('a.php');
$k['db_pwd']='new password'; //給配置項賦新值$con="<?php\nreturn array(\n";
foreach($k as $key=>$va){
$con=$con."'".$key."'=>"."'".$va."',"."\n";
}
$con.=")\n?>";$filehand=fopen('a.php','w');
fwrite($filehand,$con);
?> 運行b.php之後,你再來看看a.php的配置項有沒變么。

Ⅳ php的配置文件怎麼修改

在本地安裝php環境之後,部分php擴展沒有被打開(如 zip擴展 ),或是某項配置不能達到客戶要求(如上傳文件最大值默認是2m, upload_max_filesize = 2M ),用戶在使用的時候可能需要對php的配置文件進行修改,修改步驟:

1,找到並確認php.ini文件位置,此文件通常在c:/windows目錄底下,但有的時候部分用戶可能在本地安裝多個php,本地可能存在多個php.ini文件,要確認當前使用的php環境的php.ini文件位置可以在網站根目錄底下創建一個環境檢測文件,如phpinfo.php,內容: ,然後在瀏覽器中輸入localhost/phpinfo.php.在看到php環境顯示頁面:
PHP的配置文件的修改PHP的配置文件的修改

可在此頁面用ctrl+f找到Loaded Configuration File 其值即為當前php環境的php.ini路徑。

2,若修改zip擴展,可在php.ini文件中找到extension=php_mysql.dll ,在其下面一行加入:extension=php_zip.dll ,然後重啟web伺服器(apache或iis)即可成功配置zip擴展。

3,若需修改文件上傳上限的話,可在php.ini文件中搜索upload_max_filesize 然後修改其值,修改之後保存重啟web伺服器即可!這樣就行,我昨晚在後盾人看視頻時看到的,希望能幫到你✧*。٩(^㉨^*)و✧*。Σ(๑º㉨º๑ )

Ⅳ PHP如何動態修改配置文件

php中修改php配置文件(php.ini)的函數主要有四個函數:ini_get、ini_set、ini_get_all、ini_restore。其中ini_set和ini_get比較常用,下面分別做介紹。
(1)ini_get()
用來獲取配置文件的選項值.
這個函數相信很多人都使過,就是獲取配置文件中某一個選項的值,如果是true值就返回1,如果是false值就返回0,字元串就返回字元串。
php手冊中的例子:
<?php
echo
'post_max_size
=
'
.
ini_get('post_max_size')
.
"\n";//最多能提交的文件大小
echo
'post_max_size+1
=
'
.
(ini_get('post_max_size')+1)
.
"\n";
echo
'display_errors
=
'
.
ini_get('display_errors')
.
"\n";
//顯示錯誤是否打開
echo
'register_globals
=
'
.
ini_get('register_globals')
.
"\n";//全局變數是否打開
?>
輸出:
display_errors
=
1
register_globals
=
0
post_max_size
=
8M
post_max_size+1
=
9
這個函數主要是為了獲取配置文件,可以方便很多操作。比如想操作字元串過濾,但是又不清楚magic_quotes_gpc有沒有打開,所以就可以這樣寫一個函數:
function
stringFilter($str)
{
if
(ini_get('magic_quotes_gpc)')
{
return
$str;
}
else
{
return
addslashes($str);
}
}
當然,如果無法知道的全局變數是否打開,也可以定製這樣的函數:
function
getGetVar($var)
{
if
(ini_set('register_gobals'))
{
return
$var;
}
else
{
return
$_GET['var'];
}
}
當然,可以做很多用途,自己慢慢體會。
(2)ini_set函數
設置php.ini中的某些變數值.
這個函數是設置選項中的值,在執行函數後生效,腳本結束的時候,這個設置也失效。不是所有的選項都能被改函數設置的。具體那些值能夠設置,可以查看手冊中的列表。
就是能夠設置php.ini中的選項值比如,display_error選項關閉了,但是要顯示程序中的錯誤信息,方便調試程序,那麼就可以使用這個函數:
ini_set("display_errors",
"On");
那麼在這個頁面的程序都會顯示錯誤信息了,而且還可以使用error_reporting來設置顯示的錯誤信息級別。
如果需要增加腳本執行時間,那麼可以設置:
ini_set("max_execution_time",
"180");
那麼腳本執行時間就由默認的30秒變為180秒,當然,你也可以使用set_time_limit()來設置。
其實把ini_set和ini_get結合使的話,非常好。比如想在配置文件里添加自己的包含文件路徑,但是有沒有許可權更改php.ini,那麼可以結合兩個函數:
ini_set('include_path',ini_get('include_path').':/your_include_dir:');
(3)ini_get_all
獲取所有的設置選項變數
把所有選項值以數組的形式返回,方便當phpinfo()無法使用的時候來使用。
手冊例子:
<?php
$inis
=
ini_get_all();
print_r($inis);
?>
部分輸出值:
Array
(
[allow_call_time_pass_reference]
=>
Array
(
[global_value]
=>
1
[local_value]
=>
1
[access]
=>
6
)
[allow_url_fopen]
=>
Array
(
[global_value]
=>
1
[local_value]
=>
1
[access]
=>
7
)
...
)
(4)ini_restore
恢復配置文件默認的值
就是恢復配置文件默認的值,當你使用ini_set設置後可以使用它來恢復。

Ⅵ php修改文件名後綴

  1. $name=$shareInfo['name'];

  2. $pos=strrpos($name,".");//右側查找'.'的位置

  3. //組合條件只處理jpg/png類型的

  4. if($pos && (substr($name,$pos+1)=="jpg" || substr($name,$pos+1)=="png")){

  5. echo substr($name,0,$pos);

  6. }

Ⅶ 怎麼用php代碼來修改php的文件

PHP 中的 file_get_contents() 與 file_put_contents() 函數可以實現

file_get_contents() 函數把整個文件讀入一個字元串中。
file_get_contents() 函數是用於將文件的內容讀入到一個字元串中的首選方法。

file_get_contents(path,include_path,context,start,max_length)

參數說明
path 必需。規定要讀取的文件。
include_path 可選。如果也想在 include_path 中搜尋文件的話,可以將該參數設為 "1"。
context 可選。規定文件句柄的環境。
context 是一套可以修改流的行為的選項。若使用 null,則忽略。
start 可選。規定在文件中開始讀取的位置。該參數是 PHP 5.1 新加的。
max_length 可選。規定讀取的位元組數。該參數是 PHP 5.1 新加的。
對 context 參數的支持是 PHP 5.0.0 添加的。

注釋:本函數可安全用於二進制對象。

file_put_contents() 函數把一個字元串寫入文件中。

file_put_contents(file,data,mode,context)

參數說明
file 必需。規定要寫入數據的文件。如果文件不存在,則創建一個新文件。
data 可選。規定要寫入文件的數據。可以是字元串、數組或數據流。

注釋:本函數可安全用於二進制對象。

例如:

需要修改的php文件 index.php (前提條件此文件需要有寫入的許可權)
<?php
$str = 'abc123';
?>

處理的文件 update.php
<?php
$conents = file_get_contents("index.php");
$conents = str_replace('abc','efg',$conents);
file_put_contents("index.php",$conents);
?>

修改後的index.php 文件
<?php
$str = 'efg123';
?>

Ⅷ php如何修改文件里的內容(指定修改)

可以把文件內容顯示到 一個 textarea 中,然後修改內容在寫入

Ⅸ php修改php文件內容

說實話看了你的寫法,真的是相當的奇怪。你既然包含了yyid.php文件,後面又修改yyid.php文件的內容,這不是相當於一個人把自己給提起來嗎?要不你就在修改完成後在包含,應該改為:

<?php
$id=$_POST['pd'];
if($id!=''){
echo$id."我是中國人";
$origin_str=file_get_contents('yyid.php');
$update_str=str_replace($ping,$id,$orgin_str);
file_put_contents('yyid.php',$update_str);
}

include'yyid.php';
?>
熱點內容
最新款的電腦高配置是什麼樣的 發布:2025-01-12 01:44:08 瀏覽:822
編程手舞蹈 發布:2025-01-12 01:36:18 瀏覽:958
阿里雲伺服器要備案嗎 發布:2025-01-12 01:36:06 瀏覽:94
資料庫應用與信息管理 發布:2025-01-12 01:26:06 瀏覽:269
esxi管理存儲伺服器 發布:2025-01-12 01:25:59 瀏覽:767
在烏班圖搭建web伺服器 發布:2025-01-12 01:25:24 瀏覽:390
浙江省開票軟體升級版伺服器地址 發布:2025-01-12 01:15:57 瀏覽:203
蘋果電腦怎麼進入電腦伺服器 發布:2025-01-12 01:08:49 瀏覽:731
安卓平板怎麼設置隔空刷抖音 發布:2025-01-12 01:08:12 瀏覽:392
手機設備存儲是什麼 發布:2025-01-12 01:03:45 瀏覽:906