gpt4 book ai didi

PHP PDO混淆

转载 作者:行者123 更新时间:2023-11-28 23:43:57 27 4
gpt4 key购买 nike

下面好像没有在windows中设置$_SERVER变量。

//Parse the properties
parse_ini_file("../../props/config.ini");

// Create a new PDO instanace
try {
$this->dbh = new PDO($dsn, $_SERVER['DB_USER'], $_SERVER['DB_PASS'], $options);
// Connection succeeded, set the boolean to true.
$this->dbcon = true;
} catch (PDOException $e) {
$this->error = $e->getMessage();
}

请有人帮我解决这个问题。如果有任何帮助,我将不胜感激。

最佳答案

按照这个线程的建议,我设法让它工作了。非常感谢大家。

这是我为使它正常工作所做的 -

parse_ini_file("..\..\props\config.ini"); 更改为

  $props =  parse_ini_file("..\..\props\config.ini");

$this->dbh = new PDO($dsn, $props['DB_USER'], $props[ 'DB_PASS'], $options);

关于PHP PDO混淆,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33934974/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com