您的位置:首页 > 其它

\ \t 什么意思 ?

2009-05-19 14:20 134 查看
1$content =

2"<?php

3// ** MySQL 设置 ** //

4\$dbname ='$sName'; // 数据库名称

5\$dbuser = '$sUser'; // MySQL 用户名

6\$dbpw = '$sPass'; // 和密码

7\$dbhost = '$h'; // 在 99% 的情况下您无需修改这个值

8\$tablepre\t=\t'$tablepre'; //数据表前缀

9

\$serPath\t=\t'$AbsolutePath';\t\t//服务器根目录(绝对路径)

\$sitePath\t=\t'$sPath'; //网站根目录(相对服务器根目录路径)

\$siteUrl = '$siteUrl';

include('DB_connect.inc.php');

?>";

include('fun.inc.php');

writeover("global.php",$content);

?>

function writeover($filename,$data,$method="rb+"){

@touch($filename);

if($handle=@fopen($filename,$method)){

flock($handle,LOCK_EX);

fputs($handle,$data);

if($method=="rb+") ftruncate($handle,strlen($data));

fclose($handle);

}

}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: