$x = 'file_get_contents';
$html = $x('http://google.com');
is functionally equivalent to doing
$html = file_get_contents('http://google.com');
They're called variable functions, and generally should be avoided as they're too far removed from variable variables.