php

    변수 (Variables)

    변수(Variables) 선언 방법 변수란 값을 담는 (메모리 할당) 공간으로 $와 이름으로 선언이 가능합니다. 이때 변수의 이름은 개발자가 이 변수의 쓰임을 추측하는데 사용되며 변수의 이름을 잘지어 놓으면 향후 유지보수 작업이 수월해지기 때문에 직관적으로 짓는 것을 추천합니다. $messages = 'Hello, world'; // String $userCount = 0; // Int $pi = 3.14; ?? Double $is_visited = false; // Bool $temp = null; // NULL 변수는 문자열 안에 선언이 가능하며 변수와 문자열의 구분을 명확하게 짓게 하기 위해 중괄호 안에 변수를 선언해주기도 합니다. $message = 'Hello, world!'; echo "The..

    맥에서 XAMPP(Apache, MySQL, PHP, Perl) 설치하기

    https://www.apachefriends.org/index.html XAMPP Installers and Downloads for Apache Friends What is XAMPP? XAMPP is the most popular PHP development environment XAMPP is a completely free, easy to install Apache distribution containing MariaDB, PHP, and Perl. The XAMPP open source package has been set up to be incredibly easy to install and to us www.apachefriends.org 1. XAMPP를 설치하기 위해 위의 링크에 접속합..