我的伪代码如下:
if($_GET['action'] == 'list'){
do function getFileList($dir)
else
do nothing
exit;
}
require_once "./dir.php";
require_once "./echo.php";
function getFileList($dir)
{
}
答案 0 :(得分:2)
你的伪代码几乎就在那里。
require_once "./dir.php";
require_once "./echo.php";
function getFileList($dir)
{
/* ... */
}
if($_GET['action'] == 'list') {
getFileList($dir);
}
答案 1 :(得分:0)
您是否在询问如何通过GET将变量从同一PHP文件中发送到PHP文件?您可以创建一个提交给自己的表单:http://www.tellingmachine.com/post/Simple-self-submitting-PHP-forms.aspx。
如果您想要做其他事情,请提供其他详细信息。