从php中的不同目录运行bash脚本

时间:2015-07-10 19:18:06

标签: php bash

我试图在我的网站上运行一个bash脚本,位于我调用脚本的不同文件夹中。 我的脚本位于

namespace Outer {
    void f();
    class Inner {
        friend void f();
        static const int i = 0;
    };
}

void Outer::f() { int i = Outer::Inner::i; }

并且呼叫他的页面位于:

struct Outer {
    void f();
    class Inner {
        friend void Outer::f();
        static const int i = 0;
    };
};

void Outer::f() { int i = Outer::Inner::i; }

try.php是这样的:

~/var/www/html/scripts/try.sh

并且try.sh是:

~/var/www/html/pages/try.php

对于他们两个我给了chmod 755 知道为什么它不起作用吗?我已经在PHP中尝试了几种方法,但没有成功 请帮我 :( 非常感谢你来到这里

0 个答案:

没有答案