I have an array which is something like this:
    $array[] = array(
        "name" => "sample",
        "image" => "sample.jpg",
        "header" => "sampleDelights",
        "intro_copy" => ""
    );
    $array[] = array(
        "name" => "lwmag",
        "image" => "lwmag.jpg",
        "header" => "LW Mag",
        "intro_copy" => ""
    );
I want to sort this array based on the alphabetical order from the key "header" with PHP. I have tried usort and searched for built in functions but cannot find one (or looking past it). Is this possible with a single php function?
 
     
    