View on GitHub

eFuzyon Tools

The "eFuzyon Tools" was created by "eFuzyon Technology" to help PHP developers with boring tasks like cleaning up strings, generating URI strings, and others. Our main focus is to increase your productivity while maintaining or creating a certain degree of organization on your code.

Download this project as a .zip file Download this project as a tar.gz file

1. OVERVIEW

The "eFuzyon Tools" was created by "eFuzyon Technology" to help PHP developers with boring tasks like cleaning up strings, generating URI strings, and others.

Our main focus is to increase your productivity while maintaining or creating a certain degree of organization on your code.

As this project evolves, we'll try to increase the range of classes and methods to help a number even bigger of developers.

Let us know if you have any classes or methods to be included on the project. You can track our development at https://github.com/eFuzyon/tools

2. REQUIREMENTS

This project might work with versions lower than 5.3. We do not guarantee it.

3. INSTALLATION

All you need to do is to include the "efuzyon.init.php" file to your code and check the "demo" folder for usage examples.

4. USAGE EXAMPLE

<?php
    // Include the eFuzyon bootstrap
    include "efuzyon.init.php";

    // Add the raw value to a variable
    $value = "<strong>H'i! Thîs ís ä tëst.</strong>";

    // Generate URI from the raw value
    $newValue = eFuzyon\URI::Generate($value, array(
        "clean" => true, // Default: false
        "separator" => "-" // Default: "-"
    ));

    // Output the URI
    echo $newValue; // The output will be: "hi-this-is-a-test"
?>

5. TROUBLESHOOTING

This version of the project is still in beta phase and as such, may contain a number of bugs and be a little bit rough around the edges.

Let us know if you have any classes or methods to be included on the project. You can track our development at https://github.com/eFuzyon/tools

6. LICENSES

The "eFuzyon Tools" is distributed under the MIT License v2.0. Find out more at http://en.wikipedia.org/wiki/MIT_License

PHP and related libraries are distributed under the PHP License v3.01. Find out more at http://www.php.net/license/3_01.txt