php exec函数不能执行...急..............

来源:百度知道 编辑:UC知道 时间:2024/05/18 03:50:42
windows apache+php 环境下 <? exec("cmd /c c:\\windows\\system32\\Rasphone.exe");?> 不能够调出拨号对话框,程序在本地执行,而且在任务管理器下面已经有Rasphone.exe这个进程.CMD直接调用Rasphone.exe就可以弹出拨号对话框,为什么php exec()网页调用就不行?是不是exec()有执行权限问题?

。。。你看exec的函数返回值是什么!!!
exec等只会有返回值,而不会弹出窗口。you know?
你可以指定输出和返回值的,看看手册吧。。它有三个参数呢
output
If the output argument is present, then the specified array will be filled with every line of output from the command. Trailing whitespace, such as \n, is not included in this array. Note that if the array already contains some elements, exec() will append to the end of the array. If you do not want the function to append elements, call unset() on the array before passing it to exec().

return_var
If the return_var argument is present along with the output argument, then the return status of the executed command will be written to this variable.

返回值
The last line from the result of the command. If you need to execute a command and have all the data from the command passed directly back without any interference, use the passthru() function.

To get the output of the executed command, be sure to set and use the output parameter.