以下是对PHP和javascript实现变量交互的一个实例进行了详细的介绍。需要的朋友可以过来参考下
本例是PHP和javascript交互的例子,php中的值赋给js变量中,前提是这个php变量必须有值才行,就算是假分支中。
比如php中的$flags在本例中为true,如果js中false语句写成:$title_1.innerHTML = "";就会出错,香港服务器,因为$title在php中被赋值为数组
尽管在php的flags=="false";$title是一个字符串,情况是$title是数组,美国服务器,虚拟主机,而数组在字符串中也是不能直接显示的。
复制代码 代码如下:
$string = "天上and地下";
$flags = "";
if(strpbrk($string,"and")!=false){
$title = explode("and",$string);
$title_1 = $title[0];
$title_2 = $title[1];
$flags = "true";
}
else{
$title = $string;
$flags = "false";
}
?>
—>html
复制代码 代码如下:
Statement:The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn