$thief = '小偷';
function catching()
{
return isset($thief) ? '抓住:'.$thief:'没有抓住';
}
echo catching($thief);