Global It Leader!!



 
 

PHP localStorage 활용방법

페이지 정보

작성자 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 댓글 0건 조회 7,597회 작성일 16-06-25 14:25

본문

<?
// Save an item to the local storage
function set_key($key, $data)
 {
     echo "<script language='Javascript'>localStorage.setItem('$key', '$data');</script>";
  return $this;
 }

// Get an item from the local storage (basic implementation)
function get_key($key)
{
 echo "<script language='Javascript'>return localStorage.getItem('$key'));</script>";
}

// Remove an item from the local storage
function delete_key($key)
{
    echo "<script language='Javascript'>return localStorage.getItem('$key');</script>";
}
    
// Clear the local storage
function clear_key()
{
    echo "<script>localStorage.clear();</script>";
}             
?>

<script>
function get_key(key) {
 return localStorage.getItem(key);
}
</script>
<?
set_key("ck_mb_id", "test");

$tmp_mb_id = "<script>document.write(get_key('ck_mb_id'));</script>";

echo "당신의 아이디는?".$tmp_mb_id;

?>

댓글목록

등록된 댓글이 없습니다.

전체 59
게시물 검색
컴퓨터언어 목록
번호 제목 글쓴이 조회 날짜
59 PHP no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 4563 10-22
58 PHP no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 4000 05-14
57 PHP no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 4116 02-22
56 PHP no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 4205 02-22
55 PHP no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 4130 02-22
54 PHP no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 3928 12-09
53 PHP no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 4080 09-23
52 PHP no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 4125 09-21
51 PHP no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 3702 08-29
50 PHP no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 3554 08-06
49 PHP no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 4226 01-04
48 PHP no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 4469 06-23
47 PHP no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 3831 04-07
46 PHP no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 7269 03-19
45 PHP no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 3956 09-29
열람중 PHP no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 7598 06-25
43 PHP no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 4258 11-11
42 PHP no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 4538 07-01
41 PHP no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 5243 05-21
40 PHP no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 6150 08-19