向php传入参数的三种方法:1、使用“$argv”或者“$argc”变量来传递参数;2、使用getopt()函数来传入参数,语法“getopt('a:b:')”;3、利用fwrite()和fgets(),通过用户输入数据来传入参数。
本教程操作环境:windows7系统、PHP7.1版、DELL G3电脑
向php传入参数的三种方法
1、使用$argv or $argc参数接收
Copier après la connexion
以下是测试的结果
2、使用getopt函数(推荐使用这种方法)
Copier après la connexion
3、通过用户输入数据
Copier après la connexion
用户的输入不能为空
Copier après la connexion
推荐学习:《PHP视频教程》
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!