How to convert Php source code to Asp.net code

前端 未结 4 1685
时光取名叫无心
时光取名叫无心 2021-01-27 16:49

I am developing an application on mybloglog. I got the source code in php.I dont have any idea about php. Thats why I want to convert Php source code to Asp.net code. Any Help

4条回答
  •  情深已故
    2021-01-27 17:35

    Sorry but you'll have to rewrite this code.

    PHP is a dynamically-typed, interpreted language. C# (and any other language that runs on the CLR) is statically-typed and compiled.

    If you are a web developer I recommend porting the site yourself. You should learn about PHP and how it differs from .NET.

    They are two completely different paradigms in web development - knowing both will only make you stronger.

提交回复
热议问题