未来兼容的 is_resource() 和 get_resource_type() 函数,可以理解替换早期资源的对象。

1.0.4 2024-08-27 04:34 UTC

This package is auto-updated.

Last update: 2024-08-27 04:51:08 UTC


README

Packagist PHP Packagist Gitlab pipeline status

is_resource()get_resource_type() 函数可以理解替换早期资源的对象。

安装

composer require arokettu/is-resource

使用方法

<?php

use Arokettu\IsResource as r;

$hash = hash_init('md5');

// vanilla functions:
is_resource($hash); // true in PHP <= 7.1, false in PHP >= 7.2
get_resource_type($hash); // "Hash Context" in PHP <= 7.1, null or TypeError in PHP >= 7.2

// library functions:
r\is_resource($hash); // true
r\get_resource_type($hash); // "Hash Context"

文档

在此处阅读完整文档: https://sandfox.dev/php/is-resource.html

也请访问 Read the Docs: https://is-resource.readthedocs.io/

支持

请在 GitLab 的主要仓库中提交问题: https://gitlab.com/sandfox/is-resource/-/issues

在 Gitter 的聊天室中随时提问: https://gitter.im/arokettu/community

许可证

该库以开源形式提供,遵循MIT 许可协议