fly304625/sentry-php

基于Sentry (http://getsentry.com) 的PHP客户端的分支,同时支持php5.2/php5.6


README

Build Status Latest Stable Version Total Downloads Latest Unstable Version License Monthly Downloads Daily Downloads

本项目是Sentry(https://getsentry.com)的官方PHP SDK v1.7的分支,旨在使其即使在php5.2、php5.6下也能正常工作。本项目已修复了https://github.com/getsentry/sentry-php/pull/615/commits/21e39a6bc4e27591dabe4118d9b996bbc109b3a0的问题。

功能

  • 自动报告(未)处理的异常和错误
  • 发送自定义的诊断数据
  • 在网络发送之前处理和净化数据

安装

有几种方法可以安装Sentry的PHP集成。

$ git clone https://github.com/fly304625/sentry-php.git
or
$ composer require fly304625/sentry-php

或者您可以手动安装它

  1. 将最新版本的sentry-php存档下载并解压缩到您的PHP项目中。
  2. 在您的应用程序中要求自动加载器
require_once '/path/to/Raven/library/Raven/Autoloader.php';
Raven_Autoloader::register();

使用方法

// Instantiate a new client with a compatible DSN and install built-in
// handlers
$sentryClient = new Raven_Client('https://e9ebbd88548a441288393c457ec90441:399aaee02d454e2ca91351f29bdc3a07@app.getsentry.com/3235');
$sentryClient->install();

// Capture an exception
$event_id = $sentryClient->captureException($ex);

// Give the user feedback
echo "Sorry, there was an error!";
echo "Your reference ID is " . $event_id;

有关更多信息,请参阅文档

框架集成

有其他包可以将此SDK集成到最常见的框架中。

社区