Home > Article > Backend Development > log4php installation
See: http://logging.apache.org/log4php/install.html
Install from the source code. After unzipping the tar package, you will get the apache-log4php directory. Its structure is as follows:
<code>├───apidocs - API generated documentation └───src ├───<span>assembly</span> - Maven <span>assembly</span> configuration ├───changes - The change log ├───examples - Various usage examples ├───main │ └───php - The main source code ├───site - Web site source └───test - <span>Unit</span> tests</code>
Copy src/main/php to the php library of the web server
For example,
cp src/main/php/ /home/admin/apache/apache_install/lib/php/log4php
php require_once
<code><span><span><?php</span><span>require_once</span>(<span>'log4php/Logger.php'</span>); <span>?></span></span></code>
quick start
http://logging.apache.org/log4php/quickstart.html
Copyright Statement: This article is an original article by the blogger and may not be reproduced without the blogger's permission.
The above introduces the log4php installation, including the relevant content. I hope it will be helpful to friends who are interested in PHP tutorials.