728x90
숫자와 산술연산자
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<!doctype html>
<html>
<body>
<h1>Number & Arithmetic Operator</h1>
<h2>1+1</h2>
<?php
echo 1+1;
?>
<h2>2-1</h2>
<?php
echo 2-1;
?>
<h2>2*2</h2>
<?php
echo 2*2;
?>
<h2>4/2</h2>
<?php
echo 4/2;
?>
</body>
</html>
|
cs |
문자열과 문자열의 처리
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | <!doctype html> <html> <body> <h1>String & String Operator</h1> <?php echo "Hello \"w\"ord"; ?> <h2>concatenation operator</h2> <?php echo "Hello "."world"; ?> <h2>String length function</h2> <?php echo strlen("Hello world"); ?> </body> </html> | cs |
728x90
'PHP' 카테고리의 다른 글
06. PHP 변수의 종류 (0) | 2021.02.27 |
---|---|
05. PHP의 변수 (0) | 2021.02.25 |
03. 첫번째 PHP 어플리케이션 (0) | 2021.02.25 |
02. PHP 설정 (0) | 2021.02.25 |
01. PHP 소개 (0) | 2021.02.25 |