this might be a stupid question but …
php
function get_info() { $something = \"test\"; return $something; }
Why return when you can echo if you need to?
function get_info() { $something = "test"; echo $something; }