분류 php

PHP로 'Hello World' 구현하기

컨텐츠 정보

  • 조회 686 (작성일 )

본문

<?php
// In PHP, we use echo to print text
echo "Hello World";
// If you want to print in browser's console, we use print_r
print_r("Hello World");
// if you want the variable data types as well use var_dump
$stringVar = 'hello world';
var_dump($stringVar);
?>
php