Is PHP written in C ? Where can i find the PHP source code online without having to download all of it ?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
PHP functions are written in C – you can find the browsable source code at lxr.php.net.
For example: http://lxr.php.net/opengrok/xref/PHP_5_3/ext/standard/array.c#1242
PS: Usually you can find function definitions just by typing the function name in the search. With commonly used function like
in_arrayyou will get loads of other results though. In this case just search for"PHP_FUNCTION in_array"(with quotes).