Skip to content

Instantly share code, notes, and snippets.

@Arakaki
Last active December 21, 2015 22:09
Show Gist options
  • Save Arakaki/6373566 to your computer and use it in GitHub Desktop.
Save Arakaki/6373566 to your computer and use it in GitHub Desktop.
flatten.phpのサンプル
<?php
include './Functional/_import.php';
use Functional as F;
$users = array(
array("name" => "gakkey"),
array("name" => "hapidra"),
array(
array("name" => "oden"),
array(
array("name" => "captain")
)
)
);
var_dump(F\flatten($users));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment