There is a java library which I would like to use in my php code. The library contains many functions that I need for my program and convert the library to php would take a lot of time.
Is there anyway I can use the library as is in my code? So if for example I have a class name which is "Test" and a function which is getText() could I do something like
test = new Test();
echo test.getText();
If such a thing or something similar does exist, I would like to know about it.
Thanks in advance!