fgsl/filter

Extensions of Laminas Filter

Installs: 3

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 2

Forks: 0

Open Issues: 1

Type:framework

1.0.0 2021-05-07 18:10 UTC

This package is auto-updated.

Last update: 2024-04-10 18:34:19 UTC


README

  • Fgsl\Filter\FourOperations

This class allows to make arithmetic operations.

Example: to make doubles

use Fgsl\Filter\FourOperations;

$filter = new FourOperations(['operation'=>'mul','value'=>2]);
$value = $filter->filter(24);
// $value is equal to 48