PHP 클래스 Spot\Log

파일 보기 프로젝트 열기: vlucas/spot 1 사용 예제들

보호된 프로퍼티들

프로퍼티 타입 설명
$_queries
$_queryCount
$_queryLimit

공개 메소드들

메소드 설명
addQuery ( $adapter, mixed $query, mixed $data = null ) Add query to log
lastQuery ( ) : array Get last query run from log
queries ( ) : array Get full query log
queryCount ( ) : integer Get a count of how many queries have been run
queryLimit ( $limit = null ) : integer Get/set query limit A limit should be set by default to prevent query log from consuming and exhausing available memory

메소드 상세

addQuery() 공개 정적인 메소드

Add query to log
public static addQuery ( $adapter, mixed $query, mixed $data = null )
$query mixed Query run
$data mixed Data used in query - usually array, but can be scalar or null

lastQuery() 공개 정적인 메소드

Get last query run from log
public static lastQuery ( ) : array
리턴 array Queries that have been executed and all data that has been passed with them

queries() 공개 정적인 메소드

Get full query log
public static queries ( ) : array
리턴 array Queries that have been executed and all data that has been passed with them

queryCount() 공개 정적인 메소드

Get a count of how many queries have been run
public static queryCount ( ) : integer
리턴 integer Total number of queries that have been run

queryLimit() 공개 정적인 메소드

Get/set query limit A limit should be set by default to prevent query log from consuming and exhausing available memory
public static queryLimit ( $limit = null ) : integer
리턴 integer Query limit

프로퍼티 상세

$_queries 보호되어 있는 정적으로 프로퍼티

protected static $_queries

$_queryCount 보호되어 있는 정적으로 프로퍼티

protected static $_queryCount

$_queryLimit 보호되어 있는 정적으로 프로퍼티

protected static $_queryLimit