i m using XAMPP ,I just want to know while installing xampp what type of file, php add into our computer is it bin or .exe file only or some other file are it's bin file that contains all the function Like in C++ we make a .h file in c++

means where is the body of all core php functions declared???

how and where all functions stored exactly in xampp????

link|improve this question

60% accept rate
feedback

1 Answer

up vote 4 down vote accepted

XAMPP contains a full release of PHP in the PHP sub-directory, the file that is processed is either:

php-win.exe

php-cgi.exe

php.exe

link|improve this answer
where we can read php core function??? – diEcho Jun 30 '10 at 12:38
@superUser - The functions are compiled in to the above applications and scripts run against them. If you want a list of the core functions, the best place to look is on the PHP official manual website located at php.net/manual/en – William Hilsum Jun 30 '10 at 14:32
feedback

Your Answer

 
or
required, but never shown

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