📅  最后修改于: 2023-12-03 15:37:25.825000             🧑  作者: Mango
有时候我们会遇到需要在 PHP 中使用从前端传来的 JavaScript 变量的情况,这时候我们可以使用一些方法将这些变量传递给 PHP。
我们可以使用 GET 请求将 JavaScript 变量传递给 PHP。
在 JavaScript 中,我们可以使用 location.href
或 XMLHttpRequest
对象发起 GET 请求:
// 使用 location.href 发起 GET 请求
let jsVariable = 'hello';
location.href = 'example.php?variable=' + jsVariable;
// 使用 XMLHttpRequest 对象发起 GET 请求
let jsVariable = 'hello';
let xhr = new XMLHttpRequest();
xhr.open('GET', 'example.php?variable=' + jsVariable);
xhr.send();
在 PHP 中,我们可以通过 $_GET
数组获取 GET 请求中传递的变量值:
$phpVariable = $_GET['variable']; // 'hello'
使用 GET 请求传递变量时需要注意:
encodeURI()
或 encodeURIComponent()
方法进行编码。我们可以使用 POST 请求将 JavaScript 变量传递给 PHP。
在 JavaScript 中,我们可以使用 XMLHttpRequest
对象发起 POST 请求:
let jsVariable = 'hello';
let xhr = new XMLHttpRequest();
xhr.open('POST', 'example.php');
xhr.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
xhr.send('variable=' + jsVariable);
在 PHP 中,我们可以通过 $_POST
数组获取 POST 请求中传递的变量值:
$phpVariable = $_POST['variable']; // 'hello'
使用 POST 请求传递变量时需要注意:
encodeURI()
或 encodeURIComponent()
方法进行编码。我们可以使用 Cookie 将 JavaScript 变量传递给 PHP。
在 JavaScript 中,我们可以使用 document.cookie
设置 Cookie:
let jsVariable = 'hello';
document.cookie = 'variable=' + jsVariable;
在 PHP 中,我们可以通过 $_COOKIE
数组获取 Cookie 中传递的变量值:
$phpVariable = $_COOKIE['variable']; // 'hello'
使用 Cookie 传递变量时需要注意:
encodeURI()
或 encodeURIComponent()
方法进行编码。以上就是一些在 PHP 中使用 JavaScript 变量的方法,希望对您有所帮助。