웹프로그래밍

Global It Leader!!


PHP


 
 

localStorage 활용방법

페이지 정보

작성자 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 댓글 0건 조회 3,796회 작성일 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;

?>

댓글목록

등록된 댓글이 없습니다.

전체 81
게시물 검색
PHP 목록
번호 제목 글쓴이 조회 날짜
61 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 2919 05-14
60 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 2921 09-21
59 no_profile 운영자 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 2942 03-30
58 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 2957 08-29
57 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 2976 10-22
56 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 3046 09-23
55 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 3053 02-22
54 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 3086 04-07
53 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 3153 09-29
52 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 3166 06-23
51 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 3213 01-04
50 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 3364 12-09
49 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 3433 02-22
48 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 3445 11-11
47 no_profile 운영자 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 3567 03-26
46 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 3700 08-28
45 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 3727 07-01
열람중 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 3797 06-25
43 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 3808 01-23
42 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 3831 04-11