这个问题是关于php中的getopt函数.我需要将两个参数传递给php脚本,如
php script.php -f filename -t filetype
现在根据文件类型可以是u,c或s我需要做正确的操作.
我正在使用相同的开关盒:
这是我正在使用的代码:
// Get filename of input file when executing through command line.
$file = getopt("f:t:");
切换案例应该比较我从命令行(u,c或i)传入的文件的类型,并相应地匹配它并执行操作.
switch("I am not sure what should go in there and this is wrong,Please advice")
{
case `Not sure`:
$p->ini();
break;
case `Not sure`:
$p->iniCon();
break;
case `Not sure`:
$p->iniImp();
break;
}
请建议!!!