20 pers. connectées au site dont 1 membre
Manuel PHP
Using the bundled PHP
PHP has come standard with Macs since OS X version 10.0.0. Enabling PHP
with the default web server requires uncommenting a few lines in the
Apache configuration file httpd.conf whereas the
phpinfo() will reveal this information.
If a php.ini is not used, PHP will use all default values.
See also the related FAQ on
finding php.ini.
Locate or set the DocumentRoot
This is the root directory for all the web files. Files in this directory
are served from the web server so the PHP files will parse as PHP before
outputting them to the browser. A typical default path is
/Library/WebServer/Documents but this can be set to
anything in httpd.conf. Alternatively, the default
DocumentRoot for individual users is
/Users/yourusername/Sites
Create a phpinfo() file
The phpinfo() function will display information about PHP.
Consider creating a file in the DocumentRoot with the following PHP code:
Restart Apache, and load the PHP file created above
To restart, either execute sudo apachectl graceful in
the shell or stop/start the "Personal Web Server" option in the
OS X System Preferences. By default, loading local files in the browser
will have an command line section of the PHP
manual, and execute php -v to check the PHP version of
this PHP binary. A call to phpinfo() will also reveal
this information.
Remonter