1. Go to this page and download the library: Download gurukami/php-array library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
Arrays::{method}('null', ...) // or
Arrays::{method}('[null]', ...)
Arrays::{method}('', ...) // or
Arrays::{method}('[""]', ...) // or
Arrays::{method}('[key][""]', ...)
Arrays::{method}(null, ...)
Arrays::{method}('true', ...) // or
Arrays::{method}('[true]', ...)
Arrays::{method}(1, ...) // or
Arrays::{method}('1', ...) // or
Arrays::{method}('[1]', ...) // or
Arrays::{method}('[key][1]', ...)
Arrays::{method}(true, ...)
Arrays::{method}('false', ...) // or
Arrays::{method}('[false]', ...)
Arrays::{method}(0, ...) // or
Arrays::{method}('0', ...) // or
Arrays::{method}('[0]', ...) // or
Arrays::{method}('[key][0]', ...)
Arrays::{method}(false, ...)
Arrays::{method}('key[]', ...) // Wrong for all methods except save, because [] is append instruction
Arrays::{method}('[key[]]', ...) // Works fine
Arrays::{method}('["key[]"]', ...) // Works fine
Arrays::{method}('key[', ...) // Wrong
Arrays::{method}('key[subKey[]', ...) // Wrong
Arrays::{method}('["key["]', ...) // Works fine
Arrays::{method}('key["subKey["]', ...) // Works fine
Arrays::{method}('"key\'', ...) // recognized as "key'
Arrays::{method}('"key"', ...) // recognized as "key"
Arrays::{method}('["key"]', ...) // recognized as key
Arrays::{method}('[\'key\']', ...) // recognized as key