Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
889 views
in Technique[技术] by (71.8m points)

pdo - How to differentiate between php constant and string

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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);

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...