popen() 函数用于在 PHP 中打开进程的输入/输出管道。它可以用来执行外部程序,并且从中读取输出。
语法:
resource popen ( string $command , string $mode )
参数:
返回值:如果成功则返回一个文件指针 resource,否则返回 FALSE。
实例:
注释:
popen() 函数使用 command 参数打开进程文件指针。
如果出错,该函数返回 FALSE。
参数 | 描述 |
---|---|
command | 必需。规定要执行的命令。 |
mode | 必需。规定连接模式。 可能的值:
|
PHP imagealphablending - 设定图像的混色模式PHP 图像处理imagealphablending — 设定图像的混色模式。语法bool imagealphablen...
PHP defined() 函数PHP Misc 参考手册实例 检查某常量是否存在:?phpdefine(GREETING,Hello you! How are you today?); echo def...
PHP time_sleep_until() 函数PHP Misc 参考手册实例 延迟执行当前脚本直到 10 秒:?php// wake up ten seconds from now time_sl...
PHP deg2rad() 函数PHP Math 参考手册实例 把角度转换为弧度:?php echo deg2rad(45) . br; echo deg2rad(90) . br; echo deg2ra...
PHP fmod() 函数PHP Math 参考手册实例 返回 x/y 的浮点数余数:?php $x = 7;$y = 2;$result = fmod($x,$y); echo $result;// $r...