<?php $array = [ 'key1' => 'foo', 'key2' => 'bar', ]; extract($array); echo $key1; //print foo echo $key2; //print bar ?>