test.php中有函数a和函数b,会被$_GET中的"act"参数调用,如果没有"act"的值则有默认值
<?php
if(isset($_GET['act'])&&$_GET['act']){
$act=$_GET['act'];
}else{
$act='a';
}
function a(){
echo('this is a');
}
function b(){
echo('this is b');
}
$act();
?>
如果我运行下面的代码,它将调用 test.php 中的函数 a 和函数 b,
<?php
include ("test.php");
b();
?>
它怎么能只调用函数b?我不想更改“act”的默认值,因为它将被其他系统使用谢谢