본문 바로가기
Web Programming Language/PHP

변수

by manchesterandthecity 2020. 10. 22.

변수, 변수의 활용

 

 

<php 소스코드>

 

<!DOCTYPE html>
<html>
    <body>
        <h1>Variable</h1>
        <?php
        $a = 1;                     // 변수 선언.  앞에 $를 붙여줌.
        echo $a+1;                  // 변수의 활용. 연산하는데 활용함.
        ?>
                                     
        <?php                      // 변수의 활용. 만약, 수많은 텍스트 글자 중 원하는 단어를 찾아 바꾸려한다면, 너무 오랜시간과 수고가 필요할 것이다. 하지만 이때, 변수를 활용해본다면, 하나의 변수를 생성하여 내가 바꾸려하는 단어를 값으로 입력한다. 
        $name = "mancity";     // 그리고 해당 단어들을 모두 해당 변수로 바꿔주고 그 후로는 변수의 값만 변경해주면 모든 내용들이 변경되어 편해질 것이다.
                                       // Lorem이란 문자를 입력하고 Enter를 누르면, 임의의 sample text를 생성해줌.

        echo "Lorem ipsum dolor sit amet consectetur gogo adipisicing ".$name." elit. Placeat ".$name." inventore gogo quasi id, eligendi officia ".$name." rerum vitae, ea voluptatum ".$name." odit illo gogo reprehenderit ".$name." vel gogo cumque, eum hic neque ut architecto abquae."
        ?>        
    
    </body>
</html>

 

 

<웹페이지 출력>

 

댓글