분류
php
PHP로 'Hello World' 구현하기
본문
<?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); | |
?> |
- 이전글sql로 'Hello World' 구현 18.10.29
- 다음글Favicon Checker 18.10.23