What is the best way to convert an existing php class into Java?

前端 未结 15 1311
梦毁少年i
梦毁少年i 2021-02-09 14:07

I have been tasked with converting several php classes into java classes, which is quickly becoming a nightmare for me. I understand the basic language structure, it being simil

15条回答
  •  野的像风
    2021-02-09 14:48

    For completeness, I should point out that there is a PHP runtime for the JVM. Check out Quercus.

    You might consider leaving your current codebase in PHP and just getting it to run on the JVM. You can then rewrite code in Java as needed.

提交回复
热议问题