PHP COOK Book 책 정리하기
PHP COOK BOOK에서 알아두면 좋을듯한 내용 정리하기 1. String \n 새행 ( ASCII 10 )\r 캐리지 리턴 ( ASCII 13 )\t Tab ( ASCII 9)\\ BackSlash\$ 달러기호\" Double Quote\0 through \777 10진수\x0 through \xFF 16진수 print "\$\061\060.\x32\x35"; => $10.25 echo my day: [1] => get up [2] => get dress [3] => eat toast)$words = preg_split('/ x /i','31 inches x 22 inches x 9 inches'); Array( [0] => 31 inches [1] => 22 inches [2] => 9 inche..
웹개발/Php
2016. 10. 6. 20:39