<?php $fonts = array( 0 => ["index" => 0, "name" => "Arial", "path" => "assets/fonts/arial.ttf"], 1 => ["index" => 1, "name" => "Times", "path" => "assets/fonts/times.ttf"], 2 => ["index" => 2, "name" => "Roboto", "path" => "assets/fonts/roboto.ttf"], 3 => ["index" => 3, "name" => "AlexBrush", "path" => "assets/fonts/AlexBrush-Regular.ttf"], ); $fonts = array_column($fonts, null, "name"); ksort($fonts); $fonts = array_column($fonts, null, "index"); echo $fonts[3]["name"]; //Var_dump($fonts);
You have javascript disabled. You will not be able to edit any code.