在PHP中处理跨域请求时,可以使用以下方法来解决:
header("Access-Control-Allow-Origin: *");
header("Access-Control-Allow-Methods: GET, POST, OPTIONS");
header("Access-Control-Allow-Headers: Content-Type");
这样设置之后,就可以允许来自任意源的跨域请求。
xhr.withCredentials = true;
这样设置后,客户端就可以在跨域请求中携带cookie信息。
通过以上方法,可以在PHP中处理跨域请求,并且可以在跨域请求中携带cookie信息。