Campo Print

Arquivo: Exemplo.php
<?php header('Content-Type: text/html; charset=utf-8'); ?>
<!DOCTYPE html>
<html lang="pt-br">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Exemplo</title>
</head>

<body>
<?php
function x_print($message) {
    echo $message; // Sem quebra de linha
}

function x_println($message) {
    echo $message . '<br>'. PHP_EOL; // Com quebra de linha
}

x_print("Esta eh uma mensagem de exemplo.");

x_println("Esta eh uma mensagem de exemplo.");
?>
</body>
</html>