I'm curious on how certain php functions are implemented internally. e.g. array_values()
.
So in eclipse, I control click
on the function name, which took me to a page that contain function prototype definition, but contains no internal source code.
Is there any way to see the internal implementation of php function using eclipse? (whether the function is written in php or c)
If it is not possible to see the php source code using eclipse, then does anyone have any good strategies at searching through the php source code on github?
array_values
is an internal function, writing in C (github.com/php/php-src/blob/…) – Kofu