Merge branch 'release/v9.34.0' into feature/TTD-2650/string-class-update-with-string-check-helpers

This commit is contained in:
Clemens Schwaighofer
2025-06-05 14:44:26 +09:00
2 changed files with 3 additions and 3 deletions

View File

@@ -333,7 +333,7 @@ print "(kosrt, lower case, reverse): "
print "<hr>";
$nested = [
'B' => 'foo', 'a', '0', 9,
1 => ['z', 'b', 'a'],
'1' => ['z', 'b', 'a'],
'd' => ['zaip', 'bar', 'baz']
];
print "Nested: " . DgS::printAr($nested) . "<br>";

View File

@@ -251,10 +251,10 @@ class ArrayHandler
* @param array<mixed> $array
* @param string|int|float|bool $search_value
* @param string|array<string> $required_key
* @param ?string $serach_key [null]
* @param ?string $search_key [null]
* @param string $path_separator [DATA_SEPARATOR]
* @param string $current_path
* @return array<array{content?:array<mixed>,path?:string,missing_key?:string}>
* @return array<array{content?:array<mixed>,path?:string,missing_key?:array<string>}>
*/
public static function findArraysMissingKey(
array $array,