当前位置:首页 » 编程语言 » 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:26:06 浏览:267
esxi管理存储服务器 发布:2025-01-12 01:25:59 浏览:765
在乌班图搭建web服务器 发布:2025-01-12 01:25:24 浏览:388
浙江省开票软件升级版服务器地址 发布:2025-01-12 01:15:57 浏览:202
苹果电脑怎么进入电脑服务器 发布:2025-01-12 01:08:49 浏览:730
安卓平板怎么设置隔空刷抖音 发布:2025-01-12 01:08:12 浏览:391
手机设备存储是什么 发布:2025-01-12 01:03:45 浏览:904
linux校园网 发布:2025-01-12 00:58:54 浏览:407
时序插值算法 发布:2025-01-12 00:58:25 浏览:812
编程的射灯 发布:2025-01-12 00:58:24 浏览:405