You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.
$ javac -encoding UTF8 -d build src/*
$ cd build && jar -cvfe ../Test.jar Test *
Write PHPJava:
<?phpusePHPJava\Core\JavaArchive;
// You must pass parameters to entrypoint within the `execute` method.// The `execute` method haven't default parameters.
(newJavaArchive('Test.jar'))
->execute(["Hello World!"]);
// or
(newJavaArchive('Test.jar'))
// Specify Test.class on JavaArchive
->getClassByName('Test')
->getInvoker()
->getStatic()
->getMethods()
->call(
'main',
["Hello World!"]
);