懂php的来,文件读取写入问题
数据库帐写密码信息一般是用什么函数写入到config.php这个文件里面的,然后又是通过什么方法读取到程序当中的呢
回复讨论(解决方案)
额,一个框架内,肯定有引进的地方,然后在对数组处理,不就可以了!!
可以将变量写入到数据库,填写完配置文件,读取数据库你填写的内容,生成config.php文件即可。
include("config.php");或者
require("config.php") 这样去引用config.php
require(ROOT_PATH . 'data/config.php');
手动写进去,然后在需要的页面include("config.php"); 就可以了。
楼主的意思是不是,config.php里的那个return array(......)的数组是怎样被函数调用的??
我不懂 php,但我知道 数据库帐号密码 是手工 写入到config.php这个文件里面的
一般用 include 包含进来
我用的yii 一般在配置文件下。
'components'=>array(/* 'user'=>array( 'class' => 'WebUser', 'allowAutoLogin'=>true, 'loginUrl' => array('/user/login'), ),*/ 'db'=>array( 'class'=>'CDbConnection', 'connectionString' => 'mysql:host=192.168.1.xx;dbname=xxx;port=3306', 'schemaCachingDuration' => 3600, 'emulatePrepare' => true, 'username' => 'root', 'password' => '123456', 'charset' => 'utf8', 'tablePrefix' => 'plat2_', 'enableProfiling'=>true, 'enableParamLogging'=>true, ),

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

The Storage::download method of the Laravel framework provides a concise API for safely handling file downloads while managing abstractions of file storage. Here is an example of using Storage::download() in the example controller:

Laravel's View::share method offers a streamlined approach to making data accessible across all your application's views. This is particularly useful for managing global settings, user preferences, or recurring UI components. In Laravel development,
