Introduction   Getting Started   Upgrading   Function Reference   Changelog   Support and Feedback

list_cache_stores

Usage: array list_cache_stores ()
Purpose: Lists all avaliable cache stores.
Availability: IPB SDK 1.0

Returns an array with all of the "cache stores" in the board's cache store table.

Cache Stores will be returned in an array similar to the following structure:

Array (
      [adminnotes] => Array (
            [cs_key] => adminnotes
            [cs_value] => Why on earth do I want to store notes for other admins?
            [cs_extra] =>
      )

      [sdktest] => Array (
            [cs_key] => sdktest
            [cs_value] => A test of the cache store funcs.
            [cs_extra] =>
      )
)

// Counts how many cache stores we have and shows it
echo count($SDK->list_cache_stores())." cache stores.";


User Contributed Notes

There are currently no user contributed notes for this page.

Documentation Generated at Sat, 16 Apr 2005 07:36:35 -0700
Find the latest version at http://ipbsdk.sourceforge.net