Result:

780 Following 6,732 Followers 804 Listed

Source:

  $url = 'http://twitter.com/codepo8';
  $ch = curl_init(); 
  curl_setopt($ch, CURLOPT_URL, $url); 
  curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); 
  $output = curl_exec($ch); 
  curl_close($ch);
  $output = preg_replace('/.*(<div id="profile"[^>]+>)/msi','$1',$output);
  $output = preg_replace('/<hr.>.*/msi','',$output);
  echo $output;