How can I write PHP opcode, save it in a file and make the Zend Engine execute it? Any method or hack is welcome, as long as it does the trick.

link|improve this question

2  
What is opcode? – ulvund Nov 30 '11 at 12:55
2  
try to google it :) – Яaffael1984 Nov 30 '11 at 12:57
<smile> at "no well-intentioned answers that are not precisely addressing [the] question". Are miserable or angry answers that don't address the question acceptable? – halfer Nov 30 '11 at 13:25
@halfer ... look at Mo.sch's answer ... PHP-questions always attract such answers ... and did you -1 one me? oh man ... – Яaffael1984 Nov 30 '11 at 13:31
1  
Why downvote? It's a perfectly valid (and interesting) question. – N.B. Nov 30 '11 at 14:01
show 3 more comments
feedback

1 Answer

up vote 3 down vote accepted

There's a couple of user-space methods (from plugins) that can deal with Opcodes.

Neither produces plain text however because the opcodes are not designed to be a user-writable language (unlike Parrot).

link|improve this answer
that means I could overwrite a cached file with apc_bin_load, I guess ... so next question would be how the nice looking opcode statements relate to the actually used binary representation. do you know something about that? references or so? – Яaffael1984 Nov 30 '11 at 16:02
stackoverflow.com/questions/1795425/how-to-get-opcodes-of-php has some information, mostly referring to "Vulcan Logic Dumper" - pecl.php.net/package/vld – Alister Bulman Nov 30 '11 at 17:49
feedback

Your Answer

 
or
required, but never shown

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