I am trying to find out if Phalcon supports variable variables or dynamic evaluation? The code below shows the basic sof what I am trying to do.
//This sets $story_prefix to "home"
$story_prefix = lower($story["story_name"]);
// This is the desired end result. Setting the view variable home_title to the returned firld from the database loop.
// The word home below would actually be the $story_prefix variable from above.
$this->view->home_title=$story["story_title"];