vote up 0 vote down star

Hi,

What is the easiest way to convert a PHP script (.php) into OpCode/Bytecode (Operation Code) using C#? I can use DLLs if I have to.

I need this to be done for the project I am working in order to analyze PHP code easier.

Any thoughts or ideas are welcome.

flag

2 Answers

vote up 1 vote down check

Phalanger is what you're looking for.

link|flag
vote up 0 vote down

I do not think you can do a literal conversion since it is interpreted on the fly. You would essentially have to dissect the PHP engine.

Each PHP engine will be different and in another example of using Phalanger, that is simply being converted to CLR -- ie: it's no longer PHP so you would really be analyzing .NET CLR.

link|flag
So, my best bet is to analyze PHP code directly? – Kaitsuli May 11 at 14:46
I would think so. It depends exactly what you are analyzing. – d03boy May 11 at 15:25
I am trying to analyze the execution flow. For instance, I want to know what is being passed into certain functions and when. – Kaitsuli May 11 at 16:16

Your Answer

Get an OpenID
or

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