public function ProfilerStorageInterface::find in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/symfony/http-kernel/Profiler/ProfilerStorageInterface.php \Symfony\Component\HttpKernel\Profiler\ProfilerStorageInterface::find()
Finds profiler tokens for the given criteria.
Parameters
string $ip The IP:
string $url The URL:
string $limit The maximum number of tokens to return:
string $method The request method:
int|null $start The start date to search from:
int|null $end The end date to search to:
Return value
array An array of tokens
5 methods override ProfilerStorageInterface::find()
- BaseMemcacheProfilerStorage::find in vendor/
symfony/ http-kernel/ Profiler/ BaseMemcacheProfilerStorage.php - Finds profiler tokens for the given criteria.
- FileProfilerStorage::find in vendor/
symfony/ http-kernel/ Profiler/ FileProfilerStorage.php - Finds profiler tokens for the given criteria.
- MongoDbProfilerStorage::find in vendor/
symfony/ http-kernel/ Profiler/ MongoDbProfilerStorage.php - Finds profiler tokens for the given criteria.
- PdoProfilerStorage::find in vendor/
symfony/ http-kernel/ Profiler/ PdoProfilerStorage.php - Finds profiler tokens for the given criteria.
- RedisProfilerStorage::find in vendor/
symfony/ http-kernel/ Profiler/ RedisProfilerStorage.php - Finds profiler tokens for the given criteria.
File
- vendor/
symfony/ http-kernel/ Profiler/ ProfilerStorageInterface.php, line 33
Class
- ProfilerStorageInterface
- ProfilerStorageInterface.
Namespace
Symfony\Component\HttpKernel\ProfilerCode
public function find($ip, $url, $limit, $method, $start = null, $end = null);