downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

mysqlnd_qc_get_cache_info> <mysqlnd_qc_clear_cache
[edit] Last updated: Fri, 23 Mar 2012

view this page in

mysqlnd_qc_get_available_handlers

(PECL mysqlnd_qc >= 1.0.0)

mysqlnd_qc_get_available_handlersReturns a list of available storage handler

Opis

array mysqlnd_qc_get_available_handlers ( void )

Which storage are available depends on the compile time configuration of the query cache plugin. The default storage handler is always available. All other storage handler must be enabled explicitly when building the extension.

Parametry

Ta funkcja nie posiada parametrów.

Zwracane wartości

Returns an array of available built-in storage handler. For each storage handler the version number and version string is given.

Przykłady

<?php
var_dump
(mysqlnd_qc_get_available_handlers());
?>

Powyższe przykłady wyświetlą:

array(5) {
  ["default"]=>
  array(2) {
    ["version"]=>
    string(5) "1.0.0"
    ["version_number"]=>
    int(100000)
  }
  ["user"]=>
  array(2) {
    ["version"]=>
    string(5) "1.0.0"
    ["version_number"]=>
    int(100000)
  }
  ["APC"]=>
  array(2) {
    ["version"]=>
    string(5) "1.0.0"
    ["version_number"]=>
    int(100000)
  }
  ["MEMCACHE"]=>
  array(2) {
    ["version"]=>
    string(5) "1.0.0"
    ["version_number"]=>
    int(100000)
  }
  ["sqlite"]=>
  array(2) {
    ["version"]=>
    string(5) "1.0.0"
    ["version_number"]=>
    int(100000)
  }
}

Zobacz też:



add a note add a note User Contributed Notes mysqlnd_qc_get_available_handlers
There are no user contributed notes for this page.

 
show source | credits | stats | sitemap | contact | advertising | mirror sites