Advertisement
Advertisement
| 12.19.2007 at 12:02PM PST, ID: 23034345 |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
|
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
| Microsoft |
| Apple |
| Internet |
| Gamers |
| Digital Living |
| Virus & Spyware |
| Hardware |
| Software |
| ITPro |
| Developer |
| Storage |
| OS |
| Database |
| Security |
| Programming |
| Web Development |
| Networking |
| Other |
| Community Support |
| 12.19.2007 at 01:34PM PST, ID: 20503145 |
| 12.19.2007 at 02:18PM PST, ID: 20503480 |
| 01.05.2008 at 10:29AM PST, ID: 20590044 |
| 02.26.2008 at 05:07PM PST, ID: 20990536 |
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63: 64: 65: 66: 67: 68: 69: 70: 71: 72: 73: 74: 75: 76: 77: |
<?
error_reporting(E_ALL);
$fp = fopen('http://www.variety.com/index.asp?layout=b_o_weekend&dept=Film','r');
if (!$fp) die('cant');
$read = '';
while (!feof($fp)) $read .= fread($fp,10000);
fclose($fp);
$lines = get_items('<td width=20 class=filmOff>','<table>','start',$read);
$ret = array();
foreach ($lines as $key=>$value)
{
$ret[] = array(
'place'=>get_item('<b>','</b></td>','start',$value,'trim'),
'name'=>get_item('<td class=filmOff>','</td></tr></table>','start',$value,'trim'),
'distrib'=>str_replace(' ','',get_item('<td class=distOff>','</td>','start',$value,'trim')),
'genre'=>str_replace(' ','',get_item('<td class=genreOff>','</td>','start',$value,'trim')),
'wbof'=>get_item('<td align=right class=rboWeekendOn>',' </td>','start',$value,'trim'),
'wbof'=>get_item('<td align=right class=rboWeekendOn>',' </td>','start',$value,'trim'),
'cbof'=>get_item('<td align="right" class="dboCumulativeOff" bgcolor="#FFFFCC">',' </td>','start',$value,'trim'),
);
}
echo '<pre>';
print_r($ret);
echo '</pre>';
function get_items($start,$end,$explode_first='start',$string='',$callback='',$only='')
{
if (stristr($string,$start)===false) return false;
if (stristr($string,$end)===false) return false;
$xpf = $explode_first=='start'?true:false;
$tmp = explode(($xpf?$start:$end),$string);
$tmp = $xpf?array_slice($tmp,1):array_slice($tmp,0,-1);
foreach ($tmp as $value)
{
$tmp2 = explode(($xpf?$end:$start),$value);
if (!$xpf)
{
$help = array_map('htmlentities',$tmp2);
}
$items[] = $tmp2[($xpf?0:(count($tmp2)-1))];
}
if (!empty($callback)){
$items = array_map($callback,$items);
}
if (!isset($items))
{
echo 'ITEMS NOT DEFINED IN SEARCH : '.htmlspecialchars($start).' - '.htmlspecialchars($end)."\n";
}
return $items;
}
function get_item($start,$end,$explode_first='start',$string='',$callback='',$only='',$nr=0)
{
$var = get_items($start,$end,$explode_first,$string,$callback,$only);
if ($var===false) return false;
return $var[$nr];
}
?>
|