Typescript classes ported to PHP.
- php: ^8.3
Through Composer as chubbyphp/chubbyphp-typescript.
composer require chubbyphp/chubbyphp-typescript "^1.0"A PHP port of the JavaScript Array class. See the full documentation for API reference and examples.
use Chubbyphp\Typescript\Arr;
$arr = new Arr(1, 2, 3, 4, 5);
$arr->push(6);
$arr->pop();
$arr->map(static fn (int $v): int => $v ** 2);
// iterator_to_array($arr->values()) => [1, 4, 9, 16, 25]2026 Dominik Zogg