Echo E

[Solved] Echo E | Php - Code Explorer | yomemimo.com
Question : echo -e

Answered by : leonard

INPUT: echo "abc\n def \nghi"
OUTPUT:abc\n def \nghi
INPUT: echo -e "abc\n def \nghi"
OUTPUT:abc def
ghi

Source : https://unix.stackexchange.com/questions/189787/difference-between-echo-and-echo-e | Last Update : Fri, 11 Mar 22

Answers related to echo e

Code Explorer Popular Question For Php