Check if HTML5 sessionStorage value exists with PHP (like with cookies)

后端 未结 4 1389
无人及你
无人及你 2021-01-18 07:08

With PHP it\'s possible to check if a cookie exists. Is there a similar way to check if a HTML5 sessionStorage (webstorage) item exists?

相关标签:
4条回答
  • 2021-01-18 07:48

    You want to pass a variable from HTML5 into PHP, which requires auto-submit. Try this, though I've never tried it myself.

    Create an invisible text input. Have JavaScript change the input value to the value returned from sessionStorage.getItem("key"), and use the onload='this.form.submit()' line in the tag.

     <form name = 'phpvar' onload='this.form.submit()'><br>
     <input type = "text" value = sessionStorage.getItem("key")>
    

    I didn't actually do the work for you, but I hope this gives you a good idea.

    0 讨论(0)
  • 2021-01-18 07:55

    This worked.

    HTML side:

    <body onLoad="submitform()">
    
    <form name="myform" method="post" action="example.php">
       <input type="text" name = "var" id="var">
    </form>
    
    <script type="text/javascript">
    
    function submitform()
    {
      document.getElementById("var").value = sessionStorage.getItem('var');
      document.myform.submit();
    }
    </script>
    

    PHP side:

    echo $_REQUEST['var'];
    
    0 讨论(0)
  • 2021-01-18 08:07

    If you mean by sessionStorage the HTML5 web storage (as I understand from the tags in your question), then no. It is not possible to access this data from PHP. It can only be accessed with JavaScript and passed through to PHP with AJAX.

    0 讨论(0)
  • 2021-01-18 08:09

    No. PHP is server side language and storage or cache are browser dependent, so it is not possible check storage or cache directly from server.

    0 讨论(0)
提交回复
热议问题