Download the PHP package caneslarry/php-helpers without Composer
On this page you can find all versions of the php package caneslarry/php-helpers. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download caneslarry/php-helpers
More information about caneslarry/php-helpers
Files in caneslarry/php-helpers
Download caneslarry/php-helpers
More information about caneslarry/php-helpers
Files in caneslarry/php-helpers
Vendor caneslarry
Package php-helpers
Short Description Useful functions for PHP development.
License GFDL-1.3-or-later
Package php-helpers
Short Description Useful functions for PHP development.
License GFDL-1.3-or-later
Please rate this library. Is it a good library?
Informations about the package php-helpers
`
// Example usage:
$cache = new Cache();
$cache->set('example_key', 'example_value', 10);
$value = $cache->get('example_key');
if ($value !== null) {
echo "Value from cache: $value\n";
} else {
echo "Value not found in cache.\n";
}
sleep(15);
$value = $cache->get('example_key');
if ($value !== null) {
echo "Value from cache: $value\n";
} else {
echo "Value not found in cache after TTL expiry.\n";
}
`
All versions of php-helpers with dependencies
PHP Build Version
Package Version
Requires
php Version
>=8.1
The package caneslarry/php-helpers contains the following files
Loading the files please wait ....