No these are not same, if you do `var_export("\'");` with double quotes, this will return `'\\\''` but if you do with single quotes this outputs `'\''` with single quotes.
– emppeakJan 20 '21 at 08:42
[What is the difference between single-quoted and double-quoted strings in PHP?](https://stackoverflow.com/questions/3446216/what-is-the-difference-between-single-quoted-and-double-quoted-strings-in-php)
– Definitely not RafalJan 20 '21 at 08:42
@emppeak I guess this has to do with how escaping might be slightly different for quoted / double quoted strings. Kinda weird if you ask me.
– Harm SmitsJan 20 '21 at 09:03