示例#1
0
 /**
  * Get the IDs of all users subscribed to at least one post.
  *
  * @return array
  */
 public static function all_subscriber_ids()
 {
     // Using a "fake" object for PHP 5.2, which doesn't have static method inheritance
     $prompt_post = new Prompt_Post(0);
     return $prompt_post->_all_subscriber_ids();
 }