XE Tips 는 제가 XE 공홈에 쓴 XE 관련 유용한 팁들입니다. 기능개선은 공홈에 안 적어둔 XE 유용 개선팁들입니다.
유용정보는 외부 검색을 통해 알아낸 소스등을 기재해둔 곳입니다.
버그 신고내역들은 XE 사용하다가 발견한 버그 패치방법들로, Core Issue 에 기록해뒀기에 XE 에 적용이 되었을 가능성이 있겠죠
제가 쓴 글들에 대해 퍼가실때는 꼭 출처를남겨주시고.. (다만 플래시뷰 기반이기에 퍼가기는조금 힘들 수 있겠죠 ^^;)
타회원의 글들도 적혀있는 출처를 같이 꼭 기재해주세요
출처 | stackoverrun |
---|---|
출처URL | https://stackoverrun.com/ko/q/10998403 |
배열을 DB 에 저장하고플때
$dates = array('2016-10-10', '2016-10-11'); 처럼 배열이 있으면
$args->dates = json_encode($dates);
이렇게 배열을 json_encode 처리해서 DB 에 저장하고
추후에 배열로 불러와서 쓸때는..
$dates_array = json_decode($output->dates, true); // TRUE 처리해줘야함 ( 배열로)
$date_object = json_decode($output->dates); // TRUE 처리 안 하면 Object 로 반환됨
You cannot store array in database but alternative solution is to convert array to JSON string.
You can convert your array to json & store into database.
$dates_in_json = json_encode($dates);
//Insert query
$insert = mysql_query("INSERT INTO table('dates') VALUES('".$dates_in_json ."')");
You can get this data anywhere and convert to array like this
$dates_array = json_decode($dates_in_json, TRUE);
here second parameter TRUE for convert into array, if you will not provide TRUE json will be converted to PHP Object.