just.... don't know why two strip slash function.
stripcslashes() skips special character sets like "\n" and "\r", preserving any line breaks, return carriages, etc. that may be in the string.
stripslashes() simply removes any slashes it encounters without parsing anything beforehand.
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
stripcslashes('\n') == "\n"
while
stripslashes('\n') == "n"
Note that '\n' == "\\n"
.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With