sandromiguel/php-throw 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

sandromiguel/php-throw

Composer 安装命令:

composer create-project sandromiguel/php-throw

包简介

PHP package for throwing custom exceptions with ease.

README 文档

README

PhpThrow (Beta) is a PHP package for throwing custom exceptions with ease.

Features

  • Provides custom exception classes with additional functionality.
  • Easy to use and integrate into existing projects.

Installation

You can install PhpThrow via Composer:

composer require sandromiguel/php-throw

Usage

Comparing Native and PhpThrow exceptions

The following code shows how to use the native InvalidArgumentException class and the ThrowInvalidArgumentException class to throw an exception if the provided value is less than zero:

Native InvalidArgumentException:

try {
    $value = -5;

    if ($value < 0) {
        throw new InvalidArgumentException('The value must be greater than or equal to 0.');
    }

    // ...
} catch (InvalidArgumentException $e) {
    echo $e->getMessage();
}

ThrowInvalidArgumentException:

try {
    $value = -5;

    ThrowInvalidArgumentException::ifZeroOrNegative($value);

    // ...
} catch (ThrowInvalidArgumentException $e) {
    echo $e->getMessage();
}

ThrowInvalidArgumentException

ThrowInvalidArgumentException extends the built-in InvalidArgumentException and provides helper methods for throwing exceptions related to invalid arguments.

create()

create($message): Creates a new instance of the exception with the given message.

$email = 'not-a-valid-email-address';

try {
    // Validate the email address
    if (!filter_var($email, FILTER_VALIDATE_EMAIL)) {
        throw ThrowInvalidArgumentException::create('Invalid email address');
    }

    // ...
} catch (ThrowInvalidArgumentException $e) {
    echo $e->getMessage(); // Output: Invalid email address
}

ifZeroOrNegative()

ifZeroOrNegative($value, $message = null): Throws an exception if the numeric value is less than 0.

try {
    ThrowInvalidArgumentException::ifZeroOrNegative(-1);
} catch (\PhpThrow\ThrowInvalidArgumentException $e) {
    echo $e->getMessage(); // Output: The value must be greater than or equal to 0.
}

ifZeroOrNegativeWithValue()

ifZeroOrNegativeWithValue($value, $message = null): Throws an exception if the numeric value is negative, including the value in the error message.

try {
    ThrowInvalidArgumentException::ifZeroOrNegativeWithValue(-1);
} catch (\PhpThrow\ThrowInvalidArgumentException $e) {
    echo $e->getMessage(); // Output: The value -1 must be greater than or equal to 0.
}

You can also use a custom message without the placeholder:

ThrowInvalidArgumentException::ifZeroOrNegativeWithValue(
    -1,
    'Value must be positive'
); // Output: Value must be positive. Provided -1

ThrowPageNotFoundException

ThrowPageNotFoundException is used to handle exceptions when a page is not found.

Example: ThrowPageNotFoundException::forPage

use PhpThrow\ThrowPageNotFoundException;

$page = 'non-existent-page';
ThrowPageNotFoundException::forPage($page); // Throws an exception with the message "The page 'non-existent-page' was not found."

Note: By default, the error code is set to 404. You can change it using the code parameter.

Contributing

Want to contribute? All contributions are welcome. Read the contributing guide.

Questions

If you have questions tweet me at @sandro_m_m or open an issue.

Changelog

See CHANGELOG.md

License

This project is licensed under the MIT License - see the LICENSE file for details

TODO

  • Implement additional exception classes and methods for common validations

**~ sharing is caring ~**

sandromiguel/php-throw 适用场景与选型建议

sandromiguel/php-throw 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 51 次下载、GitHub Stars 达 1, 最近一次更新时间为 2024 年 03 月 28 日, 在 PHP 生态内属于活跃度较高的组件。

它主要适用于以下技术方向: 「php」 「exceptions」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。

我们在过去多个企业项目中使用过 sandromiguel/php-throw 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。

围绕 sandromiguel/php-throw 我们能提供哪些服务?
定制开发 / 二次开发

基于 sandromiguel/php-throw 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

  • 总下载量: 51
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 1
  • 点击次数: 18
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 1
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2024-03-28