douxian1923 2016-09-02 06:52
浏览 275
已采纳

如何将文本文件的数据保存到变量中并在php文件中读取/显示?

I make a website on php and want to read some information from text file. the reason is if, i want to update connection string, data base name, hyperlinks,echo messages etc. then i don't want to update my php code i just replace that text in text file and the relative changes reflects in php file.

For example,

1. A php file :

    <?php
    $servername = "Server_Name";   //Comes from db_config.txt file
    $username = "User_Name";       //Comes from db_config.txt file
    $password = "Password";        //Comes from db_config.txt file

    // Create connection
    $conn = new mysqli($servername, $username, $password);

    // Check connection
    if ($conn->connect_error) {
    die("Connection failed: " . $conn->connect_error);
    }
    echo "Conn_Succ_Msg";    //Comes from db_config.txt file
    ?>  

2. A text file like : (db_config.txt)

    Server_Name = localhost
    User_Name = abc
    Password = 123
    Conn_Succ_Msg = Connected successfully

I study "PHP 5 File Open/Read/Close" from http://www.w3schools.com/php/php_file_open.asp but not getting how to implement this even if it possible in xml file, etc also fine. Or can it possible with java scripts, jquery etc. Any idea how to do this ?

  • 写回答

2条回答 默认 最新

  • douxingti9307 2016-09-02 07:02
    关注

    For a simple task like that I would use file() function:

    $config = file("db_config.txt");
    

    So, you will get an array with a cell for each line. Then you can parse:

    foreach ($config as $parameter)
    {
         $ar = explode(" = ", $parameter);
         $$ar[0] = $ar[1];
    }
    

    Note that the assignment of "$$ar[0]" has two $$: this will create a new variable which name will be the content of $ar[0]. This way you will have all your parameters as variables with the same name ($Server_Name, $User_Name, etc).

    Then, your final script:

    $config = file("db_config.txt");
    
    foreach ($config as $parameter)
    {
         $ar = explode(" = ", $parameter);
         $$ar[0] = $ar[1];
    }
    
    // Create connection
    $conn = new mysqli($Server_Name, $User_name, $Password);
    
    // Check connection
    if ($conn->connect_error)
    {
        die("Connection failed: " . $conn->connect_error);
    }
    echo $Conn_Succ_Msg;
    

    Thus, this is not the best way to do it. You should create a .php file with all your parameters defined as PHP variables and then include it, like this:

    example db_config.php:

    $Server_Name = 'localhost';
    $User_Name = 'abc';
    $Password = '123';
    $Conn_Succ_Msg = 'Connected successfully';
    

    Then add at the head of your PHP script:

    include('db_config.php');
    
    // Create connection
    $conn = new mysqli($Server_Name, $User_name, $Password);
    
    // Check connection
    if ($conn->connect_error)
    {
        die("Connection failed: " . $conn->connect_error);
    }
    echo $Conn_Succ_Msg;
    

    This is safer, because you do not risk that someone can access your file directly by URL, if you set wrong file permissions.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 救!ENVI5.6深度学习初始化模型报错怎么办?
  • ¥30 eclipse开启服务后,网页无法打开
  • ¥30 雷达辐射源信号参考模型
  • ¥15 html+css+js如何实现这样子的效果?
  • ¥15 STM32单片机自主设计
  • ¥15 如何在node.js中或者java中给wav格式的音频编码成sil格式呢
  • ¥15 不小心不正规的开发公司导致不给我们y码,
  • ¥15 我的代码无法在vc++中运行呀,错误很多
  • ¥50 求一个win系统下运行的可自动抓取arm64架构deb安装包和其依赖包的软件。
  • ¥60 fail to initialize keyboard hotkeys through kernel.0000000000