I haven\'t used C since the 1980s and 1990s with my own experimentation. I\'d like to be able to pick it up again, but this time by building small things in it and then load
Tried Saurabh's example with PHP 7.1.6 and found some minor changes were required:
function_entry
zend_function_entry
RETURN_STRING("Hello World", 1)
RETURN_STRING("Hello World")
This is a great example code to start PHP extension development! Thank you!