dounie0889 2009-10-12 05:03
浏览 57
已采纳

proc_open工作目录

I have a PHP script at the following location C:\wamp\www\tcl\bin\

I am accessing the same through a browser (http://localhost/tcl/bin/xxx.php

In the PHP script . I am doing a proc_open

$app = 'C:/wamp/www/tcl/bin/tclsh84.exe';
$process = proc_open($app, $descriptorspec, $pipes);

if i give the full path it works , but if I just give tclsh84.exe it does not work . Although the PHP manual states if you don't give 4th parameter of proc_open (CWD) it takes the directory of the currently executing process.

Can someone guide me as I can't hardcode the tcl executable path as this needs to work both in windows and linux .

Regards, Mithun

  • 写回答

2条回答 默认 最新

  • dongyuan1160 2009-10-12 05:45
    关注

    You say it works if you use the full path to tclsh84.exe. So, a solution might be to find out that full path and use it in your call to proc_open.


    If you know your tclsh84.exe is in the directory in which your PHP script is, you could use something based on dirname and __FILE__ ; a bit like this, I suppose :

    $dir = dirname(__FILE__);
    var_dump($dir);   // directory in which the current PHP script is in
    
    $path = $dir . DIRECTORY_SEPARATOR . 'tclsh84.exe';
    var_dump($path);
    

    Considering the PHP script I am using is /home/squale/developpement/tests/temp/temp.php, I would get :

    string '/home/squale/developpement/tests/temp' (length=37)
    string '/home/squale/developpement/tests/temp/tclsh84.exe' (length=49)
    

    And, if needed, you can use '..' to go up in the directories tree, and, then use directories names to go down.


    Another solution might be to make sure that the program you are trying to execute is in your PATH environment variables -- but if it's a program that's used only by your application, it doesn't make much sense to modify your PATH, I guess...

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 求差集那个函数有问题,有无佬可以解决
  • ¥15 【提问】基于Invest的水源涵养
  • ¥20 微信网友居然可以通过vx号找到我绑的手机号
  • ¥15 寻一个支付宝扫码远程授权登录的软件助手app
  • ¥15 解riccati方程组
  • ¥15 display:none;样式在嵌套结构中的已设置了display样式的元素上不起作用?
  • ¥15 使用rabbitMQ 消息队列作为url源进行多线程爬取时,总有几个url没有处理的问题。
  • ¥15 Ubuntu在安装序列比对软件STAR时出现报错如何解决
  • ¥50 树莓派安卓APK系统签名
  • ¥65 汇编语言除法溢出问题