archphp/doraemon

a robotic cat who provides lots of magic tools for PHP developers

Installs: 12

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/archphp/doraemon

0.2.4 2019-02-09 17:58 UTC

This package is auto-updated.

Last update: 2025-10-10 08:47:42 UTC


README

  • Apparently, Doraemon is the robotic cat, who has lots of magic tools.
  • The PHP community needs such a cat desperately.
  • We hope our peer PHP developers would enjoy the tools this cat provides.

Getting Started

requires

  • php: >=7.0.0

Installation

 composer require archphp/doraemon

Usage

use ArchPHP\Doraemon\Basics\ArrayHelper;

$myArr = [ 
    NULL,
    false,
    0,
    "hello" => "",
    "world" => "world", 
    "", 
    []
];

print_r( ArrayHelper::compact($myArr) );