php-extended / php-inspector-object
php-inspector-interface 库的实现
7.0.6
2024-07-31 13:44 UTC
Requires
- php: >=8.0
- php-extended/php-inspector-interface: ^7
Requires (Dev)
- dev-master
- 7.0.6
- 7.0.5
- 7.0.4
- 7.0.3
- 7.0.2
- 7.0.1
- 7.0.0
- 6.0.7
- 6.0.6
- 6.0.5
- 6.0.4
- 6.0.3
- 6.0.2
- 6.0.1
- 6.0.0
- 5.0.1
- 5.0.0
- 4.0.2
- 4.0.1
- 4.0.0
- 3.1.30
- 3.1.29
- 3.1.28
- 3.1.27
- 3.1.26
- 3.1.25
- 3.1.24
- 3.1.23
- 3.1.22
- 3.1.21
- 3.1.20
- 3.1.19
- 3.1.18
- 3.1.17
- 3.1.16
- 3.1.15
- 3.1.14
- 3.1.13
- 3.1.12
- 3.1.11
- 3.1.10
- 3.1.9
- 3.1.8
- 3.1.7
- 3.1.6
- 3.1.5
- 3.1.4
- 3.1.3
- 3.1.2
- 3.1.1
- 3.1.0
- 3.0.3
- 3.0.2
- 3.0.1
- 3.0.0
This package is auto-updated.
Last update: 2024-08-31 12:01:13 UTC
README
php-inspector-interface 库的实现。
安装
本库通过 composer 安装,所有类的自动加载通过其自动加载器完成。
- 从官网下载
composer.phar
。 - 然后运行以下命令将本库作为依赖项安装
php composer.phar require php-extended/php-inspector-object ^7
基本用法
在您的代码中(例如,在尝试在异常中使用变量时)
use PhpExtended\Inspect\Inspector;
if(!'<condition not satisfied with $myVar >')
{
throw new Exception(strtr(
'The given variable "myVar" is not an object, it\'s a {thing}.',
['{thing}' => $inspector->inspect($myVar)]
));
}
预期结果是以下内容
use PhpExtended\Inspect\Inspector;
$inspector = new Inspector();
echo $inspector->inspect(null); // echo 'null'
echo $inspector->inspect(false); // echo 'boolean'
echo $inspector->inspect('myvar'); // echo 'string'
echo $inspector->inspect(1); // echo 'integer'
echo $inspector->inspect(1.5); // echo 'float'
echo $inspector->inspect(new stdClass()); // echo '\stdClass'
echo $inspector->inspect(fopen(__FILE__, 'r')); // echo 'resource(stream)'
echo $inspector->inspect([1]); // echo '[integer]'
echo $inspector->inspect([1.5]); // echo '[float]'
echo $inspector->inspect([1, 1.5]); // echo '[integer, float]'
echo $inspector->inspect([1, 2, 3]); // echo '[integer]'
echo $inspector->inspect([new stdClass()]); // echo '[\stdClass]'
echo $inspector->inspect([[1]]); // echo '[[integer]]'
许可证
MIT(见许可证文件)。