PHP Doku:: Retrieves APC s Shared Memory Allocation information - function.apc-sma-info.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzDas Verhalten von PHP beeinflussenAlternativer PHP CacheAPC Funktionenapc_sma_info

Ein Service von Reinhard Neidl - Webprogrammierung.

APC Funktionen

<<apc_load_constants

apc_store>>

apc_sma_info

(PECL apc >= 2.0.0)

apc_sma_info Retrieves APC's Shared Memory Allocation information

Beschreibung

array apc_sma_info ([ bool $limited = false ] )

Retrieves APC's Shared Memory Allocation information.

Parameter-Liste

limited

When set to FALSE (default) apc_sma_info() will return a detailed information about each segment.

Rückgabewerte

Array of Shared Memory Allocation data; FALSE on failure.

Beispiele

Beispiel #1 A apc_sma_info() example

<?php
print_r
(apc_sma_info());
?>

Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:

Array
(
    [num_seg] => 1
    [seg_size] => 31457280
    [avail_mem] => 31448408
    [block_lists] => Array
        (
            [0] => Array
                (
                    [0] => Array
                        (
                            [size] => 31448408
                            [offset] => 8864
                        )

                )

        )

)


Keine BenutzerBeiträge.
- Beiträge aktualisieren...



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)