If I understood your question correctly, you want to display value of Cashier ID.
You can do it like this..
$cashierData = GetCashierDetail(11);
$ID = $cashierData['cashierId'];
echo 'cashier ID is: ' . $ID;
Similarly you can also get CashierTotal by $cashierData['CashierTotal']
and so on