函数传值
Posted lidepeng
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了函数传值相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>mailto</title>
</head>
<body>
<script type="text/javascript">
var a=15; var b=20;
function sum(a,b){
var lidepeng=a+b;
return lidepeng;
}
document.write(sum(a,b));
</script>
</body>
</html>
/*$GLOBAL[‘变量‘]
<?php
$var1 = 1;
function test1(){
unset($GLOBALS[‘var1‘]);
}
test1();
echo $var1 . "<br />";
$var2 = 1;
function test2(){
global $var2;
unset($var2);
}
test2();
echo $var2;
?>
说明global 一下。
*/
两个变量 一个在外部,调用内部方法的变量
<?php
global $name;
$name = "why";
function changeName(){
$name = "what";
}changeName();
echo "my name is " . $name . "<br/>";
?>gloabal 一下
以上是关于函数传值的主要内容,如果未能解决你的问题,请参考以下文章