Please ensure Javascript is enabled for purposes of website accessibility knowledgebase.co.il - מדריכים - קטגוריה - PHP - כיצד ליצור שורה חדשה ב-PHP
אתם צופים ב: כיצד ליצור שורה חדשה ב-PHP

כיצד ליצור שורה חדשה ב-PHP

במדריך זה נלמד איך ליצור שורה חדשה ב-PHP.


פונקציות בשימוש:

()nl2br


ניתן להשתמש בתווי השורה החדשה \n או \r\n כדי ליצור שורה חדשה בתוך קוד המקור.

עם זאת, אם אתם רוצים שמעברי השורות יהיו גלויים גם בדפדפן, ניתן להשתמש בפונקציה ()nl2br שמכניסה מעברי שורות HTML לפני כל השורות החדשות במחרוזת.

בפניכם דוגמא על אופן הביצוע:

<?php
echo "If you look at the page source code\r\n you will find the newline in this string.";
echo "<br>";
echo nl2br("You will also find the \n newlines in this string \r\n on your browser window.");
?>

פלט:

If you lool at the page source code you will find the newline in this string.
You will also find the
newlines in this string
on your browser window.

עליכם להתחבר על מנת להגיב בעמוד זה.