I come across following sentence in PHP Manual
As in single quoted strings, escaping any other character will result in the backslash being printed too. Before PHP 5.1.1, the backslash in \{$var} had not been printed.
I want the examples of string with backslashes in PHP version before 5.1.1 and in PHP version 7.2.6 which demonstrates that before PHP 5.1.1, the backslash in \{$var} had not been printed and now it's been printed in PHP 7.2.6.