Differences between revisions 1 and 10 (spanning 9 versions)
Revision 1 as of 2021-11-18 08:51:29
Size: 236
Comment:
Revision 10 as of 2023-04-08 16:57:22
Size: 2370
Comment:
Deletions are marked like this. Additions are marked like this.
Line 2: Line 2:

The '''PHP programming language''' (PHP standing for '''PHP: Hypertext Preprocessor''') is an interpretted language designed for dynamic web pages.

the interpretter is called with '''`php(1)`'''.

The current version is 8, but older (unsupported) versions see continued use. The language has evolved rapidly and porting between versions can be a difficult task.
Line 9: Line 15:
== Libraries == == Example ==
Line 11: Line 17:
 * [[PHP/FPM|PHP-FPM]] {{{
<?php echo 'Hello, World!';
}}}



=== Embedded Example ===

`php(1)` can be embedded into web pages, if the web server supports it.

{{{
<!DOCTYPE html>
<html>
  <head>
    <title>PHP "Hello, World!" program</title>
    </head>
    <body>
    <?php
       echo '<p>Hello, World!</p>';
    ?>
  </body>
</html>
}}}

----


== Installation ==

Most [[Linux]] and [[BSD]] distributions offer a `php` package, as well as versioned packages (like `php7`).

----
Line 17: Line 54:
 * [[PHP/Configuration|Configuration]]
 * [[PHP/FPMConfiguration|FPM Configuration]]
See [[PHP/Configuration|here]] for details.



=== Logging PHP ===

To log a `php(1)` process, configure `/etc/php/php.ini` with:

{{{
display_errors = off
log_errors = on
error_log = "/var/log/php.log"
}}}

Some notable settings and their default values:

 * `log_errors_max_len` defaults to `1024`; set to `0` for no limit
 * setting `ignore_repeated_errors` to `1` will suppress repeated log messages
 * setting `ignore_repeated_source` to `1` ''while'' `ignore_repeated_errors` is also `1` will suppress repeated log messages from different sources



=== Logging PHP-FPM ===

To log a `pgp-fpm(8)` pool, configure `/etc/php/php.fpm.d/$pool.conf` with:

{{{
[www]
access.format = "[%t] %m %{REQUEST_SCHEME}e://%{HTTP_HOST}e%{REQUEST_URI}e %f%Q%q (status=%s)"
access.log = /usr/local/var/log/$pool.log
}}}

Note that `log_level` is set in `php-fpm.conf`.

{{{
log_level = debug
}}}

To log `php(1)` processes differently for each `php-fpm(8)` pool, try:

{{{
[www]
php_admin_flag[log_errors] = on
php_admin_value[error_log] = /var/log/php-$pool.log
}}}



----



== Applications and Servers ==

 * [[PHP/FPM|PHP-FPM]]
 * [[PHP/Nextcloud|Nextcloud]]
 * [[PHP/PhpMyAdmin|phpMyAdmin]]
 * [[PHP/RainLoop|RainLoop]]

----



== See also ==

[[https://www.php.net/manual/en/|PHP Manual]], the language reference manual

PHP

The PHP programming language (PHP standing for PHP: Hypertext Preprocessor) is an interpretted language designed for dynamic web pages.

the interpretter is called with php(1).

The current version is 8, but older (unsupported) versions see continued use. The language has evolved rapidly and porting between versions can be a difficult task.


Example

<?php echo 'Hello, World!';

Embedded Example

php(1) can be embedded into web pages, if the web server supports it.

<!DOCTYPE html>
<html>
  <head>
    <title>PHP "Hello, World!" program</title>
    </head>
    <body>
    <?php
       echo '<p>Hello, World!</p>';
    ?>
  </body>
</html>


Installation

Most Linux and BSD distributions offer a php package, as well as versioned packages (like php7).


Configuration

See here for details.

Logging PHP

To log a php(1) process, configure /etc/php/php.ini with:

display_errors = off
log_errors = on
error_log = "/var/log/php.log"

Some notable settings and their default values:

  • log_errors_max_len defaults to 1024; set to 0 for no limit

  • setting ignore_repeated_errors to 1 will suppress repeated log messages

  • setting ignore_repeated_source to 1 while ignore_repeated_errors is also 1 will suppress repeated log messages from different sources

Logging PHP-FPM

To log a pgp-fpm(8) pool, configure /etc/php/php.fpm.d/$pool.conf with:

[www]
access.format = "[%t] %m %{REQUEST_SCHEME}e://%{HTTP_HOST}e%{REQUEST_URI}e %f%Q%q (status=%s)"
access.log = /usr/local/var/log/$pool.log

Note that log_level is set in php-fpm.conf.

log_level = debug

To log php(1) processes differently for each php-fpm(8) pool, try:

[www]
php_admin_flag[log_errors] = on
php_admin_value[error_log] = /var/log/php-$pool.log


Applications and Servers


See also

PHP Manual, the language reference manual


CategoryRicottone

PHP (last edited 2023-04-08 17:02:03 by DominicRicottone)