Sunday 29 January 2017

php - How to return an Array's "name" as a String

$myAry = array();

// I want to return the array's name.


// something like
echo $myAry.name;

// Should print "$myAry".


Thanks,

No comments:

Post a Comment

c++ - Does curly brackets matter for empty constructor?

Those brackets declare an empty, inline constructor. In that case, with them, the constructor does exist, it merely does nothing more than t...