这个 Windows ftype 命令行中的 %~2 是什么意思?

这个 Windows ftype 命令行中的 %~2 是什么意思?

找到了这个http://php.net/manual/en/install.windows.commandline.php

ftype phpfile="C:\PHP5\php.exe" -f "%1" -- %~2

%~2 是什么意思?

答案1

ftype /?

在打开的命令字符串中,%0 或 %1 将被替换为通过关联启动的文件名。%* 获取所有参数,%2 获取第一个参数,%3 获取第二个参数,等等。 %~n 获取从第 n 个参数开始的所有剩余参数,其中 n 可能介于 2 和 9 之间(包括 2 和 9)。

相关内容