You are here

function formatStats in Memcache API and Integration 5.2

1 call to formatStats()
memcachetests.php in ./memcachetests.php

File

./memcachetests.php, line 366

Code

function formatStats($stats = array()) {
  print '<ul>';
  foreach ($stats as $name => $value) {
    print '<li>' . $name . '=' . $value . '</li>';
  }
  print '</ul>';
}