DB/๐PHP
๐์น์ฌ์ดํธ์ ๋นํ์ธ๋ PHP : ํจ์์ ์ฌ์ฉ
4:Bee
2023. 9. 3. 22:02
728x90
| YouTube Link | |
| WEB2-PHP-8.1.แแ กแทแแ ฎแแ ด แแ กแแ ญแผ | |
| https://youtu.be/IIU4mypKLlw?si=ct1Kp2TFQBlaIbeH |
php์์ ํจ์๋ฅผ ์ฌ์ฉํด์ ๊ธฐ๋ฅ์ ๊ตฌํ ํด๋ณธ๋ค. ์ฌ๊ธฐ์ sterlen()๊ณผ nl2br()ํจ์๋ฅผ ์ฌ์ฉํ๋ค. ์๋ ์ฝ๋์ ๊ฒฐ๊ณผ๋ฅผ ๋ณด์
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<h1>function</h1>
<?php
$str = "Lorem ipsum dolor sit amet, consectetur adipisicing elit.
Beatae totam impedit corporis, sapiente omnis ut amet, porro explicabo nobis reprehenderit odio perferendis cumque. Facilis nostrum, dolor reprehenderit eligendi officia exercitationem!";
echo $str;
?>
<h2>strlen()</h2>
<?php
echo strlen($str);
?>
<h2>nl2br</h2>
<?php
echo nl2br($str);
?>
</body>
</html>

728x90