@@ -76,12 +76,12 @@ phpFastCache offers you a lot of useful APIs:
76
76
- getTagsAsString($separator = ', ') // Get the data a string separated by $separator
77
77
- removeTag($tagName) // Remove a tag
78
78
- removeTags(array $tagNames) // Remove some tags
79
- - getDataAsJsonString($option = 0, $depth = 512 )// Return the data as a well-formatted json string
79
+ - getDataAsJsonString()// Return the data as a well-formatted json string
80
80
81
81
### ItemPool API
82
82
- getItem($key) // Retrieve an item and returns an empty item if not found
83
83
- getItems(array $keys) // Retrieve one or more item and returns an array of items
84
- - getItemsAsJsonString(array $keys = [ ] , $option = 0, $depth = 512 ) // Returns A json string that represents an array of items
84
+ - getItemsAsJsonString(array $keys) // Returns A json string that represents an array of items
85
85
- hasItem($key) // Tests if an item exists
86
86
- deleteItem($key) // Delete an item
87
87
- deleteItems(array $keys) // Delete one or more items
@@ -92,7 +92,7 @@ phpFastCache offers you a lot of useful APIs:
92
92
- stats() // Return the cache statistics as an object, useful for checking disk space used by the cache etc.
93
93
- getItemsByTag($tagName) // Return items by a tag
94
94
- getItemsByTags(array $tagNames) // Return items by some tags
95
- - getItemsByTagsAsJsonString(array $tagNames, $option = 0, $depth = 512 ) // Returns A json string that represents an array of items by tags-based
95
+ - getItemsByTagsAsJsonString(array $tagNames) // Returns A json string that represents an array of items by tags-based
96
96
- deleteItemsByTag($tagName) // Delete items by a tag
97
97
- deleteItemsByTags(array $tagNames) // Delete items by some tags
98
98
- incrementItemsByTag($tagName, $step = 1) // Increment items by a tag
0 commit comments