Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在创建一个 Java 小程序,它通过请求页面并检索其内容来与我的 PHP 网站进行通信。它工作得很好,它允许我的小程序使用 PHP 会话。
但是,我尝试使用 Opera(而不是 Firefox)启动小程序,似乎 Opera 不允许我的小程序使用其 PHP 会话,并且由于 Java(或至少IcedTea)本身不处理 PHP 会话,我无法使我的小程序工作。
有什么方法可以让 Java 能够处理 PHP 会话?
您必须在每个查询中携带 PHP 会话 ID。即make a start_session.phpwhich 只返回and 的结果,session_start();并echo session_id()在后续查询中使用该数字,也就是other.php?sid=XXXXX 在里面other.php使用session_id($_GET['sid']);来启动会话。
start_session.php
session_start();
echo session_id()
other.php?sid=XXXXX
other.php
session_id($_GET['sid']);