반응형


1. string

tring something together


2. literal

데이터를 언어에서 표현할때 사용되는 기호


3. sing quoted  '  작은따옴표   

4. double quoted " 큰따옴표

- 싱글로 시작하면 싱글로 끝낸다. 더블로 시작하면 더블로 끝낸다. 


5. escaping ( 빠져나온다, 탈출한다)

6. int (integers)

An int is a number of the set ℤ = {..., -2, -1, 0, 1, 2, ...}.


7. strlen

Get string length

example

<?php
$str = 'abcdef';
echo strlen($str); // 6

strlen(string $string)

반응형

+ Recent posts