PHP code example of alealcorta / resuelve-formulas
1. Go to this page and download the library: Download alealcorta/resuelve-formulas library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
alealcorta / resuelve-formulas example snippets
//Ejemplo
namespace App\Http\Controller;
use resuelveFormulas\Helpers\Formulas;
class ExampleController
{
return Formulas::getFunciones();
}
/**
* Retorna resultado de una formula
*/
$formula = "SUMATORIA(2,MAXIMO(3,5,6),7)";
Formulas::getResultado($formula);
// Respuesta de ejemplo
15
/**
* Retorna listado de funciones disponibles
*/
Formulas::getFunciones();
// Respuesta de ejemplo
[
"ABSOLUTO" => "Devuelve el número absoluto. Ej: ABSOLUTO(-5), devuelve 5",
"ALEATORIO" => "Devuelve un número de tipo entero aleatorio entre dos números. Ej: ALEATORIO(1,5)",
...
]
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.