Postgres string literals are defined using single quotes. Double quotes are used around identifiers. So the following query is valid.
SELECT "id", "name" FROM my_table WHERE "name" = 'Brian'
, , , "vs double quote" PHP, postgres-.
, , , , .
$my_var = "noob";
echo "This is a test string, $my_var\nGot it?";
>> This is a test string, noob
>> Got it?
echo 'This is a test string, $my_var\nGot it?';
>> This is a test string, $my_var\nGot it?