SmartPHP.net
29th March 2003
SmartPHP.net has some useful looking classes, including SmartTemplate (like Smarty but much simpler to use) and SmartCache, a very intelligent caching class that can be used to cache data objects as well as the output from whole pages. The example given caches a database query using the SQL statement as a unique cache key:
require_once "class.smartcache.php"; $query = "select * from ... where ..."; $data = new SmartCache( $query ); if (!$result = $data->read( 120 )) // Reuse only 120 Seconds { result = $db->exec( $query ); // Read DB Result ... $data->write( $result ); // Store result }
More recent articles
- My AI/LLM predictions for the next 1, 3 and 6 years, for Oxide and Friends - 10th January 2025
- Weeknotes: Starting 2025 a little slow - 4th January 2025
- I still don't think companies serve you ads based on spying through your microphone - 2nd January 2025