首頁 >後端開發 >php教程 >PHP有没有java里类似-cp的功能?

PHP有没有java里类似-cp的功能?

WBOY
WBOY原創
2016-06-06 20:11:431053瀏覽

在java里,可以通过-cp指定类库,比如我要运行example.zip里的TheClass

java -cp example.zip TheClass

PHP里有没有类似功能?


我的最终目标是用Java的ProcessBuilder跑在zip文件里的php文件,
更多信息请点击
https://segmentfault.com/q/1010000004946...

回复内容:

在java里,可以通过-cp指定类库,比如我要运行example.zip里的TheClass

java -cp example.zip TheClass

PHP里有没有类似功能?


我的最终目标是用Java的ProcessBuilder跑在zip文件里的php文件,
更多信息请点击
https://segmentfault.com/q/1010000004946...

<code>$phar2 = new Phar('/yourpath/test.phar');
include('phar://test.phar/subdir/test2.php');
test2();
include('phar://test.phar');
test1();</code>
陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn