teedmakerphp / cache-plugin-php
A PHP plugin to teedmakerphp-cache
v0.1.0
2019-05-29 19:45 UTC
Requires
- teedmakerphp/cache: dev-master
This package is auto-updated.
Last update: 2025-03-29 00:58:51 UTC
README
This plugin enable caching for PHP
files in teedmakerphp/cache.
ATTENTION!
This package run just a plugin for `teedmakerphp/cache`, for use it you need to install `teedmakerphp/cache`!
More informations soon!
For now you can do things like...
@sayMyName('Lorem') // results after cache <?php echo "Hello Lorem"; ?>
or yet...
@foreach($values as $index => $value) <h1>Lorem ipsum</h1> @endforeach // results after cache <?php foreach ($values as $index => $value) { ?> <h1>Lorem ipsum</h1> <?php } ?>