soggy Posted April 30, 2006 Share Posted April 30, 2006 I am kinda new to php and need this string described to me([^`]*?)I am trying to get this to load the title and link[code]<?php// Screen scraping your way into RSS// Example script, by Dennis Pallett// http://www.phpit.net/tutorials/screenscrap-rss// Get page$url = "http://titansradio.com";$data = implode("", file($url)); // Get content itemspreg_match_all ("/<A HREF\=cgi-bin([^`]*?)\br/", $data, $matches);// Begin feedheader ("Content-Type: text/xml; charset=ISO-8859-1");echo "<?xml version=\"1.0\" encoding=\"ISO-8859-1\" ?>\n";?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:admin="http://webns.net/mvcb/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <channel> <title>Titans Radio</title> <description>The latest news from titansradio.com</description> <link>http://titansradio.com</link> <language>en-us</language><?// Loop through each content itemforeach ($matches[0] as $match) { // First, get title preg_match ("/>\([^`]*?)<\/a/", $match, $temp); $title = $temp['1']; $title = strip_tags($title); $title = trim($title); // Second, get url preg_match ("/blurb_view\.cgi([^`]*?)>\/", $match, $temp); $url = $temp['1']; $url = trim($url); // Third, get text preg_match ("/<p>([^`]*?)<span class=\"byline\">/", $match, $temp); $text = $temp['1']; $text = trim($text); // Fourth, and finally, get author preg_match ("/<span class=\"byline\">By ([^`]*?)<\/span>/", $match, $temp); $author = $temp['1']; $author = trim($author); // Echo RSS XML echo "<item>\n"; echo "\t\t\t<title>" . strip_tags($title) . "</title>\n"; echo "\t\t\t<link>" . strip_tags($url) . "</link>\n"; echo "\t\t\t<description>" . strip_tags($text) . "</description>\n"; echo "\t\t\t<content:encoded><![CDATA[ \n"; echo $text . "\n"; echo " ]]></content:encoded>\n"; echo "\t\t\t<dc:creator>" . strip_tags($author) . "</dc:creator>\n"; echo "\t\t</item>\n";}?></channel></rss> [/code] Link to comment https://forums.phpfreaks.com/topic/8739-need-help-with-string/ Share on other sites More sharing options...
phporcaffeine Posted April 30, 2006 Share Posted April 30, 2006 [!--quoteo(post=370018:date=Apr 29 2006, 10:48 PM:name=soggy)--][div class=\'quotetop\']QUOTE(soggy @ Apr 29 2006, 10:48 PM) [snapback]370018[/snapback][/div][div class=\'quotemain\'][!--quotec--]I am kinda new to php and need this string described to me([^`]*?)I am trying to get this to load the title and link[code]<?php// Screen scraping your way into RSS// Example script, by Dennis Pallett// http://www.phpit.net/tutorials/screenscrap-rss// Get page$url = "http://titansradio.com";$data = implode("", file($url)); // Get content itemspreg_match_all ("/<A HREF\=cgi-bin([^`]*?)\br/", $data, $matches);// Begin feedheader ("Content-Type: text/xml; charset=ISO-8859-1");echo "<?xml version=\"1.0\" encoding=\"ISO-8859-1\" ?>\n";?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:admin="http://webns.net/mvcb/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <channel> <title>Titans Radio</title> <description>The latest news from titansradio.com</description> <link>http://titansradio.com</link> <language>en-us</language><?// Loop through each content itemforeach ($matches[0] as $match) { // First, get title preg_match ("/>\([^`]*?)<\/a/", $match, $temp); $title = $temp['1']; $title = strip_tags($title); $title = trim($title); // Second, get url preg_match ("/blurb_view\.cgi([^`]*?)>\/", $match, $temp); $url = $temp['1']; $url = trim($url); // Third, get text preg_match ("/<p>([^`]*?)<span class=\"byline\">/", $match, $temp); $text = $temp['1']; $text = trim($text); // Fourth, and finally, get author preg_match ("/<span class=\"byline\">By ([^`]*?)<\/span>/", $match, $temp); $author = $temp['1']; $author = trim($author); // Echo RSS XML echo "<item>\n"; echo "\t\t\t<title>" . strip_tags($title) . "</title>\n"; echo "\t\t\t<link>" . strip_tags($url) . "</link>\n"; echo "\t\t\t<description>" . strip_tags($text) . "</description>\n"; echo "\t\t\t<content:encoded><![CDATA[ \n"; echo $text . "\n"; echo " ]]></content:encoded>\n"; echo "\t\t\t<dc:creator>" . strip_tags($author) . "</dc:creator>\n"; echo "\t\t</item>\n";}?></channel></rss> [/code][/quote]Your help request isn't very clear (to me) but the "string" that you asked about looks like an excerpt from a regex statement? Link to comment https://forums.phpfreaks.com/topic/8739-need-help-with-string/#findComment-32099 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.