zzepish/strict-array

StrictArray 允许您设置插入数组值的类型

1.1.13 2018-10-21 16:00 UTC

This package is auto-updated.

Last update: 2024-09-22 05:10:01 UTC


README

<?php
use StrictArray\StrictArray;

$dateTimeCollection = new StrictArray(\DateTime::class);
$dateTimeCollection[] = new \DateTime();

$integerCollection = new StrictArray('integer');
$integerCollection[] = 12;

$dateTimeCollection[] = 13 // 将抛出 IncorrectValueTypeException 异常