Dmitriy Zayceff
Dmitriy Zayceff
Workaround: ```php class a { public static function init() { var_dump("test"); } } ((function () { static::init(); })->bindTo(null, a::class))();
The truffle project is an interesting thing, but at the moment it does not support ARM platform, for example, android. To develop a language for the GraalVM, it's necessary to...
Now Java VM already provides GC. It's probably possible to write a translator from the current AST to AST of GraalVM. It’s still not clear how to integrate the Memory...
> will do the main implamentation over the next 7 month as a thesis for TH Zurich i would say we both prepare to jump into that after he has...
@frank-dspeed Have you compared performance with the latest version of php (7.4+)?
This function is very difficult to implement because each type of source can have a completely different and non-standardized set of attributes.
There are a lot of difficulties to implement this. It is especially difficult to implement anonymous classes and lambdas from Java, for this you need to compile the code at...
The current work scheme of the JPHP allows you to run any JPHP code on the Dalvik VM, because it is precompiled in JVM bytecode. For the same reason, the...
It's possible now, you can write own extension. You need write wrapper classes for java classes and register the all in extension. The jphp-gui-ext (javafx extension) was written in the...
It is also possible to write a package for jppm, which will combine both the php code and java via Gradle plugin. An example of such a package - https://github.com/jphp-group/jphp-dffi-ext.