本文目录一览:
JS如何赋值给PHP变量
进入php源程序目录中的ext目录中,这里存放着各个扩展模块的源代码,选择你需要的模块,比如curl模块:cd curl
执行phpize生成编译文件,phpize在PHP安装目录的bin目录下
/usr/local/php5/bin/phpize
运行时,可能会报错:Cannot find autoconf. Please check your autoconf installation and
the $PHP_AUTOCONF
environment variable is set correctly and then rerun this
script.,需要安装autoconf:
yum install autoconf(RedHat或者CentOS)、apt-get install
autoconf(Ubuntu Linux)
/usr/local/php5/bin/php -v
执行这个命令时,php会去检查配置文件是否正确,如果有配置错误,
这里会报错,可以根据错误信息去排查!
js中var声明的变量赋给php变量
您好!很高兴为您解答:
目测这种情况用ajax;
input type="button" value="先传给php在让php打印出来" id="btn"/
script
var btn=document.getElementById('btn');
var a='123456';
btn.onclick=function(){
var ajax=new XMLHttpRequest();
ajax.open('GET','a.php?use='+a,true)
ajax.onreadystatechange=function(){
if(ajax.readyState==4){
if(ajax.status==200){
alert(ajax.responseText);
}
}
}
ajax.send();
}
/script
以下是php
?php
$a=$_GET['use'];
echo $a;
这样就把js的变量给了php的变量
望采纳
如何将js变量赋值给php
首先,需要赋值的javascript脚本必须要写在PHP的页面中,不能引入进来。在这个页面里,直接写PHP代码就可以了,比如var a = "",这样就行了,javascript能够获取后台传入的变量$a.
将js变量值赋给php变量赋值问题
不是一种语言,反过来 alert(?php $a?)支持,你的要求用ajax吧
如用ajax请求这样的链接var url="m.php?ao="+ao;
在m.php中, $ao=$_GET['ao'];