“Konfigurasi dalam PHP” Kode Jawaban

Konfigurasi PHP

phpinfo();
Annoyed Albatross

Konfigurasi File PHP

<?php

return (object) array(
    'host' => 'localhost',
    'username' => 'root',
    'pass' => 'password',
    'database' => 'db'
);

?>
  This allows you to use the object syntax when you include the php : 
$configs->host instead of $configs['host'].

Also, if your app has configs you need on the client side (like for an Angular app), 
you can have this config.php file contain all your configs 
  (centralized in one file instead of one for JavaScript and one for PHP). 
  The trick would then be to have another PHP file that would echo only the client side 
  info (to avoid showing info you don't want to show like database connection string).
  Call it say get_app_info.php :

<?php

    $configs = include('config.php');
    echo json_encode($configs->app_info);

?>

The above assuming your config.php contains an app_info parameter:

<?php

return (object) array(
    'host' => 'localhost',
    'username' => 'root',
    'pass' => 'password',
    'database' => 'db',
    'app_info' => array(
        'appName'=>"App Name",
        'appURL'=> "http://yourURL/#/"
    )
);

?>
So your database's info stays on the server side, 
but your app info is accessible from your JavaScript, 
with for example a $http.get('get_app_info.php').then(...); type of call.
Yellow Throated Sandgrouse

Konfigurasi File PHP

<?php

return (object) array(
    'host' => 'localhost',
    'username' => 'root',
    'pass' => 'password',
    'database' => 'db'
);

?>
Yellow Throated Sandgrouse

Buat file nilai konfigurasi di PHP

<?php
$config = array(
    "database" => "test",
    "user"     => "testUser"
);

function writeConfig( $filename, $config ) {
    $fh = fopen($filename, "w");
    if (!is_resource($fh)) {
        return false;
    }
    foreach ($config as $key => $value) {
        fwrite($fh, sprintf("%s = %s\n", $key, $value));
    }
    fclose($fh);

    return true;
}

function readConfig( $filename ) {
    return parse_ini_file($filename, false, INI_SCANNER_NORMAL);
}

var_dump(writeConfig("test.ini", $config));
var_dump(readConfig("test.ini"));
Indian Gooner

Konfigurasi dalam PHP

<?php 

$servername = "localhost";
$username = "root";
$password = "";

try {
  $conn = new PDO("mysql:host=$servername;dbname=crud", $username, $password);
} catch(PDOException $e) {
  echo "Connection failed: " . $e->getMessage();
  exit();
}

$errors = ['result' =>'', 'email'=>'', 'password'=>'', 'login'=>'', 'signup'=>''];

session_start();

require('controllers/contacts-controller.php');

require('controllers/auth-controller.php');





?>
naly moslih

Jawaban yang mirip dengan “Konfigurasi dalam PHP”

Pertanyaan yang mirip dengan “Konfigurasi dalam PHP”

Lebih banyak jawaban terkait untuk “Konfigurasi dalam PHP” di PHP

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya