2024-05-19 11:19:00 +04:00
|
|
|
<?php
|
|
|
|
namespace nur\sery;
|
|
|
|
|
|
|
|
use Traversable;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class A: gestion de tableaux ou d'instances de {@link IArrayWrapper}
|
|
|
|
*
|
|
|
|
* contrairement à {@link cl}, les méthodes de cette classes sont plutôt conçues
|
|
|
|
* pour modifier le tableau en place
|
|
|
|
*/
|
|
|
|
class A {
|
|
|
|
/**
|
|
|
|
* s'assurer que $array est un array non null. retourner true si $array n'a
|
|
|
|
* pas été modifié (s'il était déjà un array), false sinon.
|
|
|
|
*/
|
|
|
|
static final function ensure_array(&$array): bool {
|
|
|
|
if (is_array($array)) return true;
|
|
|
|
if ($array instanceof IArrayWrapper) $array = $array->wrappedArray();
|
|
|
|
if ($array === null || $array === false) $array = [];
|
2024-05-30 07:00:59 +04:00
|
|
|
elseif ($array instanceof Traversable) $array = cl::all($array);
|
2024-05-19 11:19:00 +04:00
|
|
|
else $array = [$array];
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* s'assurer que $array est un array s'il est non null. retourner true si
|
|
|
|
* $array n'a pas été modifié (s'il était déjà un array ou s'il valait null).
|
|
|
|
*/
|
|
|
|
static final function ensure_narray(&$array): bool {
|
|
|
|
if ($array instanceof IArrayWrapper) $array = $array->wrappedArray();
|
2024-05-30 07:00:59 +04:00
|
|
|
if ($array === null || is_array($array)) return true;
|
2024-05-19 11:19:00 +04:00
|
|
|
if ($array === false) $array = [];
|
2024-05-30 07:00:59 +04:00
|
|
|
elseif ($array instanceof Traversable) $array = cl::all($array);
|
2024-05-19 11:19:00 +04:00
|
|
|
else $array = [$array];
|
|
|
|
return false;
|
|
|
|
}
|
2024-06-06 16:07:58 +04:00
|
|
|
|
|
|
|
static function merge(?array &$dest, ...$merges): void {
|
|
|
|
$dest = cl::merge($dest, ...$merges);
|
|
|
|
}
|
2024-06-06 17:32:07 +04:00
|
|
|
|
|
|
|
static final function select(?array &$dest, ?array $mappings, bool $inverse=false): void {
|
|
|
|
$dest = cl::select($dest, $mappings, $inverse);
|
|
|
|
}
|
|
|
|
|
|
|
|
static final function selectm(?array &$dest, ?array $mappings, ?array $merge=null): void {
|
|
|
|
$dest = cl::selectm($dest, $mappings, $merge);
|
|
|
|
}
|
|
|
|
|
|
|
|
static final function mselect(?array &$dest, ?array $merge, ?array $mappings): void {
|
|
|
|
$dest = cl::mselect($dest, $merge, $mappings);
|
|
|
|
}
|
|
|
|
|
|
|
|
static final function pselect(?array &$dest, ?array $pkeys): void {
|
|
|
|
$dest = cl::pselect($dest, $pkeys);
|
|
|
|
}
|
|
|
|
|
|
|
|
static final function pselectm(?array &$dest, ?array $pkeys, ?array $merge=null): void {
|
|
|
|
$dest = cl::pselectm($dest, $pkeys, $merge);
|
|
|
|
}
|
|
|
|
|
|
|
|
static final function mpselect(?array &$dest, ?array $merge, ?array $pkeys): void {
|
|
|
|
$dest = cl::mpselect($dest, $merge, $pkeys);
|
|
|
|
}
|
2024-05-19 11:19:00 +04:00
|
|
|
}
|