vote up 0 vote down star

Hello,

I have a business logic classes that are written in pure C# (without any specific things from this language) and I would convert this code into PHP. I can write my own parser, but think if I could someone did it before me.

Could you please tell me where can I find this kind of converter?

Ps. As I've written I use only plain C# programming in this language. Only arguments, declarations of variables, equations and control statements.

flag

76% accept rate

3 Answers

vote up 2 vote down check

I know you're hoping for someone who had experience but in case no one comes forward...

You might consider just copy and pasting the code into a PHP script and checking what breaks. Write a parser to fix that, run it across the entire script, and see what's the next thing that breaks. Continue until the script functions as expected.

If you're not using any of the more involved .Net classes I can't imagine you'll have too much trouble.

link|flag
vote up 0 vote down

Find a Replace

Seriously, if it's that's simple... this might be all you need.

link|flag
Yes, but how? I have like > 10 000 LOC. Find and replace like regex yes? Maybe there is someone who have written regex's once and can share? – tomaszs Jan 13 '09 at 22:55
vote up 2 vote down

Are you asking for a tool to directly convert your C# code to PHP? I doubt there is one available and I'd be a little worried about using one (from what I've learnt of C# it's not easily transferrable to PHP).

Depending on the size of the project I'd be much more inclined to rewrite it. I did have a look but couldn't find anything (lots and lots of job requests though - looks like a business there =P).

link|flag
I use only basic things like as I have written. I new before writing in C# that some day I will need to translate the code to other languages too. – tomaszs Jan 13 '09 at 22:54

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.