Skip to main content

All Questions

0 votes
0 answers
53 views

Tag a data to curl HTTP request in PHP C++ extension

I have a PHP C++ extension that monitors the web requests and captures the required request details with Call stacks. Here from my PHP C++ extension whenever curl_exec(..) happens and a HTTP ...
Sel_va's user avatar
  • 608
1 vote
0 answers
93 views

Local variables in Zend module

I am writing a Zend module. I have implemented this 2 functions: PHP_RINIT_FUNCTION PHP_RSHUTDOWN_FUNCTION The first one in called when a request is made. The second is called for the response....
Bob5421's user avatar
  • 8,829
25 votes
1 answer
1k views

Get PHP Opcodes Dynamically at Runtime

I want to build a PHP extension that can dynamically inspect every opcode generated from a PHP file and do some checking on that. I came across several websites and found out a couple of functions ...
ebudi's user avatar
  • 287