Download the PHP package mosetek/logger without Composer
On this page you can find all versions of the php package mosetek/logger. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download mosetek/logger
More information about mosetek/logger
Files in mosetek/logger
Package logger
Short Description Simple interface for information and errors logging
License MIT
Homepage https://github.com/mateusz-osetek/php-logger
Informations about the package logger
Simple PHP Logger 1.1.3
Requirements
- PHP >= 7.1
- PHPMailer >= 6.0
Installation
Download it manually from GitHub or by composer: composer require mosetek/logger:dev-master
Usage
Initializing the logger
If you want to initialize logger with default path and filename (logs/.log
) just use:
If you want to initialize logger on another path with another filename you can do this by defining those while creating new object.
Also you can initialize logger with custom date format as the last parameter. Logger's using the standard PHP date() formats.
Another path and filename options
You can get path, full path to file, filename or date format any time you need:
You can also set another filename or path:
Write and read files
To put some content into file (defined in object creation) simply use log()
method.
You can log into file text, numbers and more complicated data structures like arrays and objects
You can also put some information into file, with some label next to it by adding information level as second parameter;
There are three supported labels for information leveling:
If you want to put data on different path you can declare it in third argument:
You can also put simple text without any date or special characters into your file by using text()
method.
text()
allows you to specify ending of line or text by adding additional param like that:
If you want to read contents of your log file use read($path): string
.
You can also read content of any other text files by adding a path parameter to read method.
Putting variables into log file (deprecated: use log() instead)
You can put more complicated structures like variables into log file by using this:
Send file by email (deprecated)
You can send your log file by email use send($to)
. Method will grab contents of your log file and send it as message of email.
Your server must support sendmail
to use the above. If you're using UNIX-like systems please take care of installing postfix.
Move and copy files
You can move your file to another destination.
If you want to move another file than active log file use second argument to point what other file you want to move.
If you want to just copy file some place else use copy()
method:
And similar to the move
method you can point another file to copy, if you don't want to copy your current log file.
Wiping and deleting log file
If you want to empty content of your current file use:
You can also wipe any other text file by using $path
parameter:
Interface allows you to deleting files by using drop()
method.
Of course you can determine path to another file to drop as well
Checking size of file
You can check the size of a file by using below:
Method by default returns size in megabytes. You can determine another unit by passing argument.
If you want you can check size of any other file by passing path in second argument: