๊ด€๋ฆฌ ๋ฉ”๋‰ด

C-log

๐Ÿ˜์›น์‚ฌ์ดํŠธ์˜ ๋น„ํ•˜์ธ๋“œ PHP : ํ•จ์ˆ˜์˜ ์‚ฌ์šฉ ๋ณธ๋ฌธ

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
Comments