Answers for "what is carriage return in php"

PHP
0

what is carriage return in php

// "\r" is known as carriage return
Typically on Windows, when you need to represent a line terminator use: "\r\n"
whereas on Unix systems, "\n" is enough.
Posted by: Guest on October-31-2020

Code answers related to "what is carriage return in php"

Browse Popular Code Answers by Language