Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- 웹퍼블리싱
- 웹퍼블리셔
- 튜닝
- 사이트제작
- 안드로이드
- 웹디자이너
- 웹디자인
- 쇼핑몰제작
- 개발자
- 홈페이지제작
- 프로그래머
- 쇼핑몰
- 홈페이지
- 웹개발자
- jQuery Plugin
- 제이쿼리
- 워크식스
- 플러그인
- 고도몰
- CSS
- 홈페이지구축
- 쇼핑몰구축
- 웹에이전시
- 포트폴리오
- PHP
- work6.kr
- 3D프린터
- 커스터마이징
- plugin
- JQuery
Archives
- Today
- Total
목록JSON (1)
그냥 개발자 블로그
PHP팀 - post json 데이터 받기
function objectToArray($d) { if (is_object($d)) { // Gets the properties of the given object // with get_object_vars function $d = get_object_vars($d); } if (is_array($d)) { /* * Return array converted to object * Using __FUNCTION__ (Magic constant) * for recursive call */ return array_map(__FUNCTION__, $d); } else { // Return array return $d; } } $post = json_decode(file_get_contents('php://inp..
프로그래밍팁/php
2015. 10. 11. 20:29