我是OOP PHP的新手,目前正在阅读“PHP对象,模式和实践”。我需要开发一些可以生成GeoRSS Feed的东西。这就是我所拥有的(它完美地运作,我只想对我能做的不同/更有效/更安全的一些批评):
class RSS {
public $channel_title;
public $channel_description;
public $channel_link;
public $channel_copyright;
public $channel_lang;
public $item_count;
public function __construct ($channel_title, $channel_description, $channel_link, $channel_copyright, $channel_lang) {
$this->channel_title = $channel_title;
$this->channel_description = $channel_description;
$this->channel_link = $channel_link;
$this->channel_copyright = $channel_copyright;
$this->channel_lang = $channel_lang;
$this->items = "";
$this->item_count = 0;
}
public function setItem ($item_pubDate, $item_title, $item_link, $item_description, $item_geolat, $item_geolong) {
$this->items[$this->item_count]['pubDate'] = date("D, j M Y H:i:s T",$item_pubDate);
$this->items[$this->item_count]['title'] = $item_title;
$this->items[$this->item_count]['link'] = $item_link;
$this->items[$this->item_count]['description'] = $item_description;
$this->items[$this->item_count]['geo:lat'] = $item_geolat;
$this->items[$this->item_count]['geo:long'] = $item_geolong;
$this->items[$this->item_count]['georss:point'] = $item_geolat." ".$item_geolong;
$this->item_count++;
}
public function getFeed () {
foreach ($this->items as $item => $item_element) {
$items .= " <item>\n";
foreach ($item_element as $element => $value) {
$items .= " <$element>$value</$element>\n";
}
$items .= " </item>\n";
}
$feed = "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n"
. "<rss version=\"2.0\" xmlns:geo=\"http://www.w3.org/2003/01/geo/wgs84_pos#\" xmlns:georss=\"http://www.georss.org/georss\">\n"
. " <channel>\n"
. " <title>".$this->channel_title."</title>\n"
. " <description>".$this->channel_description."</description>\n"
. " <link>".$this->channel_link."</link>\n"
. " <copyright>Copyright ".date("Y")." ".$this->channel_copyright.". All rights reserved.</copyright>\n"
. " <lang>".$this->channel_lang."</lang>\n"
. $items
. " </channel>\n"
. "</rss>";
return $feed;
}
}
答案 0 :(得分:4)
protected
或public
,则属性应始终为private
。protected $items
,$items = ''
中遗漏了getFeed
。$this->items = array();
中的__construct
。不管理自己的item_count
。更好地依赖PHP自己的数组附加功能:
$this->items[] = array(
'pubDate' => date("D, j M Y H:i:s T",$item_pubDate),
'title' => $item_title,
'link' => $item_link,
'description' => $item_description,
'geo:lat' => $item_geolat,
'geo:long' => $item_geolong,
'georss:point' => $item_geolat." ".$item_geolong,
);
好多了,不是吗?
不要声明您需要的更多变量:
foreach ($this->items as $item) {
$items .= " <item>\n";
foreach ($item as $element => $value) {
$items .= " <$element>$value</$element>\n";
}
$items .= " </item>\n";
}
这里你不需要数组键。所以不要在foreach
循环中获取它;)而是使用$item
作为值,这比$item_element
更好。
答案 1 :(得分:3)
以下是一些要点:
setItem
中那样的大关联数组时,它表示你有另一个对象在起作用。所以制作一个class RSSItem
或类似的东西,把这些东西作为成员。如果我想到更多,我会编辑我的答案。
答案 2 :(得分:3)
我对这个课程的唯一疑问是在你的setItem
函数中,你应该使用[]
表示法来推送一个像这样的关联数组:
public function setItem ($item_pubDate, $item_title, $item_link, $item_description, $item_geolat, $item_geolong) {
$this->items[] = array(
'pubDate' => date("D, j M Y H:i:s T",$item_pubDate),
'title' => $item_title,
'link' => $item_link,
'description' => $item_description,
'geo:lat' => $item_geolat,
'geo:long' => $item_geolong,
'georss:point' => $item_geolat.' '.$item_geolong);
}
这样你可以抛弃你的$item_count
索引变量。
此外,让您的媒体资源public
通常是一个非常糟糕的主意。
答案 3 :(得分:1)
第一个计时器看起来不错!您在哪里处理作为参数发送的数据?就个人而言,我会使用类方法处理所有内容,对象的目的是包含对象。这意味着与它们相关的所有处理都应该在类本身内部进行。
此外,也许使用继承和公共,私人成员,使用其他类的类,如Tesserex建议,这是一个很好的想法。不过,那里的OOP还是不错的开始。