1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 | <?php $input = Array ( 0 => Array ( 'notecata' => 'Tele Call', 'user_id' => 1, 'note_key' => '4977f48e', 'note_title' => 'Urgent Call to Soorya', 'note_description' => 'want to discuss about the work', 'added_on' => '15-11-11' ), '1' => Array ( 'notecata' => 'Set PlaceMent Drive', 'user_id' => 1, 'note_key' => 'b8b25bd8', 'note_title' => 'Want to collect biodata from Students', 'note_description' => 'Soorya must do this very well', 'added_on' => '15-11-11' ), '2' => Array ( 'notecata' => 'Conference', 'user_id' => 1, 'note_key' => '3cdb4886', 'note_title' => 'Sunday Meeting', 'note_description' => 'About new courses', 'added_on' => '08-11-11' ) ); echo"INPUT:<pre>"; print_r($input); echo "</pre>"; $output = array(); foreach ($input as $k=>$v) { $array_key = $v['added_on']; unset($v['added_on']); if( array_key_exists($array_key,$output) ) { array_push($output[$array_key],$v); } else { $output[$array_key][] = $v; } } echo"OUTPUT:<pre>"; print_r($output); echo "</pre>"; |
PD9waHAKCiRpbnB1dCA9IEFycmF5CigKICAgIDAgPT4gQXJyYXkKICAgICAgICAoCiAgICAgICAgICAgICdub3RlY2F0YScgPT4gJ1RlbGUgQ2FsbCcsCiAgICAgICAgICAgICd1c2VyX2lkJyA9PiAxLAogICAgICAgICAgICAnbm90ZV9rZXknID0+ICc0OTc3ZjQ4ZScsCiAgICAgICAgICAgICdub3RlX3RpdGxlJyA9PiAnVXJnZW50IENhbGwgdG8gU29vcnlhJywKICAgICAgICAgICAgJ25vdGVfZGVzY3JpcHRpb24nID0+ICd3YW50IHRvIGRpc2N1c3MgYWJvdXQgdGhlIHdvcmsnLAogICAgICAgICAgICAnYWRkZWRfb24nID0+ICcxNS0xMS0xMScKICAgICAgICApLAoKICAgICcxJyA9PiBBcnJheQogICAgICAgICgKICAgICAgICAgICAgJ25vdGVjYXRhJyA9PiAnU2V0IFBsYWNlTWVudCBEcml2ZScsCiAgICAgICAgICAgICd1c2VyX2lkJyA9PiAxLAogICAgICAgICAgICAnbm90ZV9rZXknID0+ICdiOGIyNWJkOCcsCiAgICAgICAgICAgICdub3RlX3RpdGxlJyA9PiAnV2FudCB0byBjb2xsZWN0IGJpb2RhdGEgZnJvbSBTdHVkZW50cycsCiAgICAgICAgICAgICdub3RlX2Rlc2NyaXB0aW9uJyA9PiAnU29vcnlhIG11c3QgZG8gdGhpcyB2ZXJ5IHdlbGwnLAogICAgICAgICAgICAnYWRkZWRfb24nID0+ICcxNS0xMS0xMScKICAgICAgICApLAoKICAgICcyJyA9PiBBcnJheQogICAgICAgICgKICAgICAgICAgICAgJ25vdGVjYXRhJyA9PiAnQ29uZmVyZW5jZScsCiAgICAgICAgICAgICd1c2VyX2lkJyA9PiAxLAogICAgICAgICAgICAnbm90ZV9rZXknID0+ICczY2RiNDg4NicsCiAgICAgICAgICAgICdub3RlX3RpdGxlJyA9PiAnU3VuZGF5IE1lZXRpbmcnLAogICAgICAgICAgICAnbm90ZV9kZXNjcmlwdGlvbicgPT4gJ0Fib3V0IG5ldyBjb3Vyc2VzJywKICAgICAgICAgICAgJ2FkZGVkX29uJyA9PiAnMDgtMTEtMTEnCiAgICAgICAgKQoKKTsKZWNobyJJTlBVVDo8cHJlPiI7CnByaW50X3IoJGlucHV0KTsKZWNobyAiPC9wcmU+IjsKJG91dHB1dCA9IGFycmF5KCk7CmZvcmVhY2ggKCRpbnB1dCBhcyAkaz0+JHYpCnsKCSRhcnJheV9rZXkgPSAkdlsnYWRkZWRfb24nXTsKCXVuc2V0KCR2WydhZGRlZF9vbiddKTsKCWlmKCBhcnJheV9rZXlfZXhpc3RzKCRhcnJheV9rZXksJG91dHB1dCkgKQoJewoJCWFycmF5X3B1c2goJG91dHB1dFskYXJyYXlfa2V5XSwkdik7Cgl9CgllbHNlIHsKCQkkb3V0cHV0WyRhcnJheV9rZXldW10gPSAkdjsJCQoJfQkKfQplY2hvIk9VVFBVVDo8cHJlPiI7CnByaW50X3IoJG91dHB1dCk7CmVjaG8gIjwvcHJlPiI7Cgo=
-
upload with new input
-
result: Success time: 0s memory: 13112 kB returned value: 0
INPUT:<pre>Array ( [0] => Array ( [notecata] => Tele Call [user_id] => 1 [note_key] => 4977f48e [note_title] => Urgent Call to Soorya [note_description] => want to discuss about the work [added_on] => 15-11-11 ) [1] => Array ( [notecata] => Set PlaceMent Drive [user_id] => 1 [note_key] => b8b25bd8 [note_title] => Want to collect biodata from Students [note_description] => Soorya must do this very well [added_on] => 15-11-11 ) [2] => Array ( [notecata] => Conference [user_id] => 1 [note_key] => 3cdb4886 [note_title] => Sunday Meeting [note_description] => About new courses [added_on] => 08-11-11 ) ) </pre>OUTPUT:<pre>Array ( [15-11-11] => Array ( [0] => Array ( [notecata] => Tele Call [user_id] => 1 [note_key] => 4977f48e [note_title] => Urgent Call to Soorya [note_description] => want to discuss about the work ) [1] => Array ( [notecata] => Set PlaceMent Drive [user_id] => 1 [note_key] => b8b25bd8 [note_title] => Want to collect biodata from Students [note_description] => Soorya must do this very well ) ) [08-11-11] => Array ( [0] => Array ( [notecata] => Conference [user_id] => 1 [note_key] => 3cdb4886 [note_title] => Sunday Meeting [note_description] => About new courses ) ) ) </pre>


