Hi,
I have the following line in my source code and PHP Stylist always removes a \ from the three.
Input:
if ( !preg_match_all ( ",'(ctl00\\\$ContentBody\\\$pgrBottom\\\$ctl[^']*)',i", $page, $ctl ) ) {
Output:
if ( !preg_match_all ( ",'(ctl00\\$ContentBody\\$pgrBottom\\$ctl[^']*)',i", $page, $ctl ) ) {
But now the code does not work anymore. How can I stop PHPStylist to do this?
Log in to post a comment.
Hi,
I have the following line in my source code and PHP Stylist always removes a \ from the three.
Input:
if ( !preg_match_all ( ",'(ctl00\\\$ContentBody\\\$pgrBottom\\\$ctl[^']*)',i", $page, $ctl ) ) {
Output:
if ( !preg_match_all ( ",'(ctl00\\$ContentBody\\$pgrBottom\\$ctl[^']*)',i", $page, $ctl ) ) {
But now the code does not work anymore. How can I stop PHPStylist to do this?