L
L
LittleFatNinja2015-06-08 18:57:08
PHP
LittleFatNinja, 2015-06-08 18:57:08

How to make file get contents take into account special characters?

some:
hello\n

echo file_get_contents("some");

output:
hello\n

and I need special characters to be taken into account
hello

Answer the question

In order to leave comments, you need to log in

2 answer(s)
A
Andrey Burov, 2015-06-08
@BuriK666

$text = str_replace(['\n', '\r'], ["\n", "\r"], $text);
But this option does not take into account \\n \\r

A
Andrey Mokhov, 2015-06-08
@mokhovcom

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 question

Ask a Question

731 491 924 answers to any question