how to get 'value' and 'Lable' from this array
array(2) {
["value"]=>
string(4) "Easy"
["label"]=>
string(8) "راحت"
}
use array_keys() and array_values() for the same.
use following code
echo $array['value'];
echo '<br>';
echo $array['label'];
output:
Easy
راحت