PHP Classes

Classes of Robert Mayer

Recommend this page to a friend!
  All class groups  >  All authors  >  Classes of Robert Mayer (1)  >  Mission progress status  >  Reputation  
Picture of Robert Mayer
Name: Robert Mayer <contact>
Classes: 1
Country: Sweden Sweden
Age: 36
All time rank: 350525 in Sweden Sweden
Week rank: 178 Up2 in Sweden Sweden Up
All time users: 414
Week users: 0
 
  A   B   C   D   E   F   G   H   I   J   K   L   M   N   O   P   Q   R   S   T   U   V   W   X   Y   Z  
  Files folder image Syron Twitter  
Display the latest statuses of a Twitter user
This class can be used to display the latest statuses of a Twitter user.

It can retrieve the RSS feed with the timeline of the latest statuses of a given user.

The class parses the RSS feed and display the status messages and their published dates.



Example:
<?php

$twitter = new syronTwitter("syron1988", 4, true);

$twitter->userColor = "#FF0000";
$twitter->chanColor = "#FFFF00";

$twitter->readPosts();

$twitter->getTwitterLink("syron1988");

?>

Explanation:
First of all we got to start the new class by creating a new variable and set the class to it:
$twitter = new syronTwitter("syron1988", 4, true);

the first parameter in syronTwitter class is the username I want to read the rss file of. the second and third are optional:
1-20 = number of posts you want to read
true / false = if you want to cut the username out of the rss file - twitter gives us the username by each post, but that can be disabled by setting "true" into the class.

$twitter->userColor, changes the color of usernames in post. if u posted something to a user like @username, then it will be displayed with a changed color. The same thing happens with #channel, when using
$twitter->chanColor. Look example!

Next row:
$twitter->readPosts();
reads the posts.

Next row:
$twitter->getTwitterLink("syron1988");
Gives us the the link to the username you have as a parameter, if empty it will show the usernames profile which the .rss file gave us.




One more additional function is:
$twitter->readLastPost();
which reads the last post - as the function already says!
RatingsUtility Consistency Documentation Examples Tests Videos Overall Rank
All time: 25% 33% - - - - 15% 4498
Month: Not yet rated by the users


  A   B   C   D   E   F   G   H   I   J   K   L   M   N   O   P   Q   R   S   T   U   V   W   X   Y   Z