Answer the question
In order to leave comments, you need to log in
How to make file get contents take into account special characters?
some:hello\n
echo file_get_contents("some");
output:
hello\n
hello
Answer the question
In order to leave comments, you need to log in
$text = str_replace(['\n', '\r'], ["\n", "\r"], $text);
But this option does not take into account \\n \\r
two letters: a slash and a small latin en, what do you think are special characters? Bravo!
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question