Skip to content

Instantly share code, notes, and snippets.

@scneptune
Created June 5, 2014 22:17
Show Gist options
  • Save scneptune/31ffb71b1ce4e3fe6958 to your computer and use it in GitHub Desktop.
Save scneptune/31ffb71b1ce4e3fe6958 to your computer and use it in GitHub Desktop.
Test Data for Lyric's filtering
$result = array(
array(
"artist" =>"Big Country",
"song" => "Big Country",
"date" =>"5/28/2014",
"isNew" => true
),
array(
"artist" =>"Willie Nelson",
"song" => "Always on My Mind",
"date" =>"2/17/2012",
"isNew" => false
),
array(
"artist" =>"Johnny Cash",
"song" => "Boy Named Sue",
"date" =>"7/28/2010",
"isNew" => false
),
array(
"artist" =>"Dolly Parton",
"song" => "Jolene",
"date" =>"6/2/2014",
"isNew" => true
),
array(
"artist" =>"Gene Autry",
"song" => "Deep in the Heart of Texas",
"date" =>"2/6/2014",
"isNew" => false
)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment