Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I am storing db credentials in a file as constant and including in another file. I am using PDO to connecting with database. But It's unable to differentiating between string and constant variables. So how to differentiate it to connect with database? This is my code line-

$db = new PDO("mysql:hostname='DB_HOST'; dbname='P_DB'", "'DB_USER'", "'DB_PASSKEY'");
question from:https://stackoverflow.com/questions/65879687/how-to-differentiate-between-php-constant-and-string

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
1.1k views
Welcome To Ask or Share your Answers For Others

1 Answer

PHP constants cannot be instantiated within a string; you need to concatenate them to the string, or, in the case of your user and password fields, just reference the constant:

$db = new PDO("mysql:hostname=" . DB_HOST . ";dbname=" . P_DB, DB_USER, DB_PASSKEY);

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...