在 PHP 中使用 echo 製表符

Olorunfemi Akinlua 2022年7月12日
在 PHP 中使用 echo 製表符

在我們的 PHP 應用程式中,我們可能會使用很多 echo 語句。隨之而來的是不同的複雜性,其中一種複雜性是轉義序列,例如換行符、退格符和製表符。

在 PHP 中,製表符是一個棘手的問題。本文將向你展示如何在 PHP 程式碼中回顯製表符。

在 PHP 中顯示 tab

首先,要在 PHP 中執行製表符,你需要轉義字元和字母 t,\t。儘管字串可以使用單引號和雙引號,但製表符的轉義序列不適用於單引號中的字串文字,並且會回顯字元。

讓我們看看它的實際效果。

<?php

echo "\tNext time of Super Story\n";
echo "The New Encounter\n";

?>

程式碼片段的輸出:

	Next time of Super Story
The New Encounter

因為我們在雙引號字串文字中使用了轉義序列,所以它起作用了。程式碼片段還有一個換行符的轉義序列,\n

現在,讓我們嘗試使用單引號。

<?php

echo "\tNext time of Super Story\n";
echo "The New Encounter\n";
echo '\tNext time of Super Story';

?>

程式碼片段的輸出:

	Next time of Super Story
The New Encounter
\tNext time of Super Story

你會注意到轉義序列與字串本身的內容一起列印,這是由於單字串和雙字串文字中的 PHP 解析字元的方式

Olorunfemi Akinlua avatar Olorunfemi Akinlua avatar

Olorunfemi is a lover of technology and computers. In addition, I write technology and coding content for developers and hobbyists. When not working, I learn to design, among other things.

LinkedIn

相關文章 - PHP Echo