웹프로그래밍

Global It Leader!!


PHP


 
 

localStorage 활용방법

페이지 정보

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

?>

댓글목록

등록된 댓글이 없습니다.

전체 90
게시물 검색
PHP 목록
번호 제목 글쓴이 조회 날짜
50 no_profile 오원장쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 2981 08-06
49 no_profile 오원장쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 3332 01-04
48 no_profile 오원장쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 3256 06-23
47 no_profile 오원장쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 3147 04-07
46 no_profile 오원장쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 5125 03-19
45 no_profile 오원장쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 3223 09-29
열람중 no_profile 오원장쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 3908 06-25
43 no_profile 오원장쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 3515 11-11
42 no_profile 오원장쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 3809 07-01
41 no_profile 오원장쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 4544 05-21
40 no_profile 오원장쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 4391 08-19
39 no_profile 오원장쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 3890 01-23
38 no_profile 오원장쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 4159 01-21
37 no_profile 오원장쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 4022 01-18
36 no_profile 오원장쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 4160 01-18
35 no_profile 오원장쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 3781 08-28
34 no_profile 오원장쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 3893 04-11
33 no_profile 오원장쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 4601 09-19
32 no_profile 오원장쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 4879 09-14
31 no_profile 오원장쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 4231 08-17