© 이 문서에서는 PHP 중국어 웹사이트 매뉴얼 풀어 주다
The example illustrates getting varnish statistic snapshot from shared memory
Example #1 Get statistic snapshot
<?php$vs = new VarnishStat ;try { $data = $vs -> getSnapshot ();} catch ( VarnishException $e ) { echo $e -> getMessage (); exit( 3 );}exit( 0 ); ?>