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.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package logger

Simple PHP Logger 1.1.3

Requirements


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:


All versions of logger with dependencies

PHP Build Version
Package Version
Requires php Version ^7.1
phpmailer/phpmailer Version ^6.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package mosetek/logger contains the following files

Loading the files please wait ....