<?php

// your code goes here
$str = 'Кушак из серебра';
function anon ($string) use ($str) {
    return $str . $string;
}
echo anon(', где же он?');