PHP 8.4.24 Released!

Voting

: min(five, six)?
(Example: nine)

The Note You're Voting On

rafayhingoro[at]hotmail[dot]com
9 years ago
stripcslashes does not simply skip the C-style escape sequences \a, \b, \f, \n, \r, \t and \v, but converts them to their actual meaning. 

So
<?php
stripcslashes('\n') == "\n"; //true;

$str = "we are escaping \r\n"; //we are escaping

?>

<< Back to user notes page

To Top