diff --git a/reference/apc/functions/apc-add.xml b/reference/apc/functions/apc-add.xml
index 9dbca44ef2..26226a263b 100644
--- a/reference/apc/functions/apc-add.xml
+++ b/reference/apc/functions/apc-add.xml
@@ -1,10 +1,10 @@
-
+
apc_add
- Cache a variable in the data store (only if it's not stored)
+ Cache a variable in the data store
@@ -15,7 +15,9 @@
mixedvar
intttl
-
+
+ Caches a variable in the data store, only if it's not already stored.
+
Unlike many other mechanisms in PHP, variables stored using
diff --git a/reference/apc/functions/apc-cache-info.xml b/reference/apc/functions/apc-cache-info.xml
index 40f0cb9c82..6b4cbe5917 100644
--- a/reference/apc/functions/apc-cache-info.xml
+++ b/reference/apc/functions/apc-cache-info.xml
@@ -1,10 +1,10 @@
-
+
apc_cache_info
- Retrieves cached information (and meta-data) from APC's data store
+ Retrieves cached information from APC's data store
@@ -14,6 +14,9 @@
stringcache_type
boollimited
+
+ Retrieves cached information and meta-data from APC's data store.
+
@@ -38,7 +41,7 @@
If cache_type is "user",
- information about the user cache will be returned; otherwise,
+ information about the user cache will be returned; otherwise,
information about the system cache (cached files) will be returned.
@@ -126,7 +129,7 @@ Array
-
+
&reftitle.seealso;
diff --git a/reference/apc/functions/apc-clear-cache.xml b/reference/apc/functions/apc-clear-cache.xml
index b5d8370b5a..580697504f 100644
--- a/reference/apc/functions/apc-clear-cache.xml
+++ b/reference/apc/functions/apc-clear-cache.xml
@@ -1,10 +1,10 @@
-
+
apc_clear_cache
- Clears the APC cache
+ Clears the APC cache
@@ -40,6 +40,15 @@
+
+ &reftitle.seealso;
+
+
+ apc_cache_info
+
+
+
+
+
apc_compile_file
- Stores a file in the bytecode cache, bypassing all filters.
+ Stores a file in the bytecode cache, bypassing all filters.
@@ -13,12 +13,8 @@
boolapc_compile_file
stringfilename
-
-
-
- &reftitle.returnvalues;
- &return.success;
+ Stores a file in the bytecode cache, bypassing all filters.
@@ -31,7 +27,7 @@
Full or relative path to a PHP file that will be compiled and stored in
- the bytecode cache.
+ the bytecode cache.
@@ -39,6 +35,13 @@
+
+ &reftitle.returnvalues;
+
+ &return.success;
+
+
+
+
apc_delete
- Removes a stored variable from the cache
+ Removes a stored variable from the cache
@@ -13,6 +13,9 @@
boolapc_delete
stringkey
+
+ Removes a stored variable from the cache.
+
&reftitle.parameters;
diff --git a/reference/apc/functions/apc-fetch.xml b/reference/apc/functions/apc-fetch.xml
index 56f86885bb..10519d3e3c 100644
--- a/reference/apc/functions/apc-fetch.xml
+++ b/reference/apc/functions/apc-fetch.xml
@@ -1,10 +1,10 @@
-
+
apc_fetch
- Fetch a stored variable from the cache
+ Fetch a stored variable from the cache
@@ -13,6 +13,9 @@
mixedapc_fetch
stringkey
+
+ Fetchs a stored variable from the cache.
+
&reftitle.parameters;
diff --git a/reference/apc/functions/apc-load-constants.xml b/reference/apc/functions/apc-load-constants.xml
index 007a2eab7f..3982f63839 100644
--- a/reference/apc/functions/apc-load-constants.xml
+++ b/reference/apc/functions/apc-load-constants.xml
@@ -1,5 +1,5 @@
-
+
apc_load_constants
@@ -14,6 +14,9 @@
stringkey
boolcase_sensitive
+
+ Loads a set of constants from the cache.
+
&reftitle.parameters;
diff --git a/reference/apc/functions/apc-sma-info.xml b/reference/apc/functions/apc-sma-info.xml
index 38261122d4..14af9b4bc9 100644
--- a/reference/apc/functions/apc-sma-info.xml
+++ b/reference/apc/functions/apc-sma-info.xml
@@ -1,10 +1,10 @@
-
+
apc_sma_info
- Retrieves APC's Shared Memory Allocation information
+ Retrieves APC's Shared Memory Allocation information
@@ -13,8 +13,11 @@
arrayapc_sma_info
boollimited
+
+ Retrieves APC's Shared Memory Allocation information.
+
-
+
&reftitle.parameters;
diff --git a/reference/apc/functions/apc-store.xml b/reference/apc/functions/apc-store.xml
index 14867146e1..bc793f1da5 100644
--- a/reference/apc/functions/apc-store.xml
+++ b/reference/apc/functions/apc-store.xml
@@ -1,10 +1,10 @@
-
+
apc_store
- Cache a variable in the data store
+ Cache a variable in the data store
@@ -15,7 +15,9 @@
mixedvar
intttl
-
+
+ Cache a variable in the data store.
+
Unlike many other mechanisms in PHP, variables stored using