fork download
  1. <?php
  2. $regex = '~\\\\p\\\\~';
  3. echo (preg_match($regex,"\\p\\")) ? "*** Matches! ***" : "Doesn't Match";
Success #stdin #stdout 0.01s 20568KB
stdin
Standard input is empty
stdout
*** Matches! ***