#!/bin/bash
declare -A APPPORT
APPPORT=([zhaocancan]=159****1876)
for key in ${!APPPORT[*]}
do
    echo $key phone is ${APPPORT[$key]}
done


#zhaocancan phone is 159****1876