Skip to content

Instantly share code, notes, and snippets.

@chrishieu
Created February 9, 2023 16:44
Show Gist options
  • Save chrishieu/3c054406d776ca999b41e66e00706cfb to your computer and use it in GitHub Desktop.
Save chrishieu/3c054406d776ca999b41e66e00706cfb to your computer and use it in GitHub Desktop.
<?php
$input = array("Input.txt" => "Randy", "Code.py" => "Stan", "Output.txt" => "Randy");
$arr = array();
foreach ($input as $key => $item) {
$arr[$item][] = $key;
}
var_dump($arr);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment