I want to print the name of my array : how can i do ?
e.g :
$my_array = array ('dummy','example','var'); echo "My array :".nameof(my_array)." is "; print_r ($my_array);
// result : "My array : my_array is array([0]=>'dummy',......"
is it possible?
no it´s not