teedmakerphp/cache-plugin-php

用于teedmakerphp-cache的PHP插件

v0.1.0 2019-05-29 19:45 UTC

This package is auto-updated.

Last update: 2024-09-29 05:21:48 UTC


README

此插件可以为teedmakerphp/cache中的PHP文件启用缓存。

注意!

This package run just a plugin for `teedmakerphp/cache`, for use it you need to install `teedmakerphp/cache`!

更多信息即将发布!

目前您可以做如下操作...

@sayMyName('Lorem')

// results after cache

<?php echo "Hello Lorem"; ?>

或者还有...

@foreach($values as $index => $value)
  <h1>Lorem ipsum</h1>
@endforeach

// results after cache

<?php foreach ($values as $index => $value) { ?>
  <h1>Lorem ipsum</h1>
<?php } ?>