<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<?xml-stylesheet type="text/xsl" href="css/rss.xslt"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/"><channel><title>我有意思吧·搭·妖怪</title><link>http://www.wou148.cn/</link><description>生活点滴·个人品牌经营</description><generator>RainbowSoft Studio Z-Blog 1.8 Arwen Build 90619</generator><language>zh-CN</language><copyright>Copyright www.wou148.cn Some Rights Reserved.</copyright><pubDate>Tue, 13 Sep 2011 10:25:07 +0800</pubDate><item><title>比较require(),include(),require_once()和include_once()的异同 </title><author>jaker0796@163.com (妖怪)</author><link>http://www.wou148.cn/post/94.html</link><pubDate>Fri, 21 Jan 2011 09:47:51 +0800</pubDate><guid>http://www.wou148.cn/post/94.html</guid><description><![CDATA[<div class="cnt"><p>如果你多次面对PHP面试，就会发现&nbsp; 很多上面都会出现对于require(),include(),require_once()和include_once()的异同&nbsp; 下面做以下笔记</p><p>require()和include()有许多相似之处，也有些不同。理解它们的不同点非常重要，否则很容易犯错误。</p><p>我把这两个语句放在一起介绍，读者可以比较学习。<br />1.require()语句<br />require()语句用于指定的文件代替语句本身，就象C语言中的include()语句一样。如果php配置文件php.ini中的URL fopen wrappers 是打开的(默认情况下是打开的)，就可以使用URL来指定文件的位置从而实现远程文件的调用。<br />有一点就是使用require()和include()语句时要特别的注意。那就是在被包含的文件中，处理器是按照html模式来解释其中的内容的，处理 完被包含的内容后又恢复到php模式。所以如果需要在被包含文件中使用php语法，就要使用正确的php开始和结束标记来把这些语句包含进去。<br />require()和include()知识php中的一种语言特性，而不是函数。它们和函数有许多不同的地方。<br />比如：require()所包含的文件中不能包含控制结构，而且不能使用return这样的语句。在require()所包含的文件中使用return语句会产生处理错误。<br />不象include()语句，require()语句会无条件地读取它所包含的文件的内容，而不管这些语句是否执行。所以如果你想按照不同的条件包含不同 的文件，就必须使用include()语句。当然，如果require()所在位置的语句不被执行，require()所包含的文件中的语句也不会被执 行。<br />require()不能在循环体中根据条件的不同而包含不同的文件。require()语句只会在第一次执行时调用它所包含的文件中的内容替换本身这条语 句，当再次被执行时只能执行第一次所包含的语句。但是include()语句可以在循环体中来包含不同的文件。<br />require()语句中的变量继承require()语句所在位置的变量作用域。所有在require()语句的位置可以访问的变量，在 require()语句所包含的文件中都可以访问。如果require()语句位于一个函数内部，那么被包含文件内的语句都相当于定义在函数内部。<br />require()语句在PHP程序执行前就会将使用require引用的文件读入，因此require通常放到程序的开始处。因此要特别注意一 点，require语句有一点强，不管程序是否真的需要引用的文件，只要你使用require语句，它都会把他们包含进来！即使你是在条件控制语句中使用 这个函数进行包含，那怕是那个条件不为真，引用文件也会被包含进来！形成了僵尸，在运行过程中这些僵尸是不起任何可见作用的，但是很明显它会加重负担，所 以这一点要特别注意！如果使用require语句发生了包含错误，那么程序将输出出错信息并停止运行！！</p><p>&nbsp;&nbsp;&nbsp;&nbsp; 如果require()语句通过声明文件的URL来包含远程文件，而且远程服务器按照php代码来解释该文件的话，本地php文件中所包含的内容是在远程服务器上处理以后的结果。例如：<br />/*<br />这个例子假设some_server服务器可以解释.php文件，而不对.txt文件进行解释。在远程文件中 <br />需要变量$varfirst和$varsecond<br />*/<br />/*不能正确执行，远程服务器不处理.txt文件*/<br />require(&quot;<a><font color="#4c7d08">http://some_server/file.txt?varfirst=1&amp;varsecond=2</font></a>&quot;);<br /><br />/*不正确，这样只能在本地机上寻找file.php文件*/<br />require(&quot;file.php?varfirst=1&amp;varsecond=2&quot;);</p><p>&nbsp;&nbsp;&nbsp; /*正确的语句*/<br />require(&quot;<a><font color="#4c7d08">http://some_server/file.php?varfirst=1&amp;varsecond=2</font></a>&quot;);<br /><br />$varfirst=1;<br />$varsecond=2;<br />require(&quot;file.txt&quot;); /*正确的语句*/<br />require(&quot;file.php&quot;); /*正确的语句*/<br />本来在php3.0中，require()所包含的文件可以使用return语句，但条件是return语句不能出现在{}内部，而必须出现在被包含文件 的全局范围内。在php4.0中已经取消了require()的这个功能，但是仍然可以使用include()来实现。</p><p>2.include()语句<br />include()语句和require()语句有许多相同的地方。凡是在上边require()语句中没有明确说明不能适用于include() 的部分外，require()语句的功能完全适用于include()语句。下边介绍require()语句所没有的include()语句的功能和特 点。<br />include语句只有在被执行时才会读入要包含的文件。在错误处理方便，使用include语句，如果发生包含错误，程序将跳过include语句，虽然会显示错误信息但是程序还是会继续执行！<br />php处理器会在每次遇到include()语句时，对它进行重新处理，所以可以根据不同情况的，在条件控制语句和循环语句中使用include()来包含不同的文件。<br />例如：<br />&lt;?php<br />$files=array('first.php','second.php','third.php');<br />for($i=0;$i&lt;count($files);$i++)<br />{<br />include $files[$i];<br />} <br />?&gt; <br />在php3.0和php4.0中include()语句所包含的文件中都可以使用return语句来返回一个值，并停止执行被包含文件下面的内容。但 php3.0和php4.0在处理这样的情况时有所不同。在php3.0中return语句不能包含在{}内，除非它在一个函数中，因为这时它表示函数的 返回值而不是文件的返回值。而在php4.0中就没有了这样的限制，用户甚至可以在文件中返回一个数字，就象函数的返回值一样。这样的语句在</p><p>php3.0中通常会报告错误。以下举例说明：<br />假设被包含的文件为test.inc和主文件main.php位于一个目录中。test.inc的内容如下：<br />test.inc<br />&lt;?php<br />echo &quot;Before the return&lt;br&gt;\n&quot;;<br />if(1)<br />{ <br />return 27; <br />}<br />echo &quot;After the return&lt;br&gt;\n&quot;;<br />?&gt;</p><p>假设在main.php文件中包含下面的语句：<br />&lt;?php<br />$retval=include('test.inc');<br />echo &quot;File returned:'$retval'&lt;br&gt;\n&quot;;<br />?&gt;<br />php3.0解释器会在第二行报告错误，而不能得到include()语句的返回值。但在php4.0中会得到下面的结果：<br />Before the return<br />File returned: '27'<br />下边假设main.php改为：<br />&lt;?php<br />include('test.inc');<br />echo &quot;Back in main.html&lt;br&gt;\n&quot;;<br />?&gt;<br />在php4.0中的输出结果是:<br />Before the return<br />Back in main.html<br /><br />在php5.0中的输出结果也是:<br />Before the return<br />Back in main.html</p><p>&nbsp;&nbsp;&nbsp; 在php3.0中的输出结果是:<br />Before the return<br />27Back in main.html<br /><br />Parse error:parse error in /apache/htdocs/phptest/main.html on line 5<br /><br />出现上面的错误是因为return语句位于{}内部而且不是一个函数内部。如果把{}去掉，使它位于test.inc的最外层，输出结果是：<br />Before the return<br />27Back in main.html<br />之所以出现27，是因为在php3.0中不支持include()返回。</p><p>3.require_once()和include_once()语句<br />require_once()和include_once()语句分别对应于require()和include()语句。require_once() 和include_once()语句主要用于需要包含多个文件时，可以有效地避免把同一段代码包含进去而出现函数或变量重复定义的错误。例如：如果创建两 个文件util.inc和fool.inc，程序代码分别为：<br />util.inc:<br />&lt;?php <br />define(PHPVERSION,floor(phpversion()));<br />echo &quot;GLOBALS ARE NICE&lt;br&gt;\n&quot;;<br />function goodTea()<br />{<br />return &quot;Olong tea tasts good!&quot;;<br />}<br />?&gt;<br />和fool.inc:<br />&lt;?php<br />require (&quot;util.inc&quot;);<br />function showVar($var)<br />{<br />if(PHPVERSION==4)<br />{<br />print_r($var);<br />}<br />else<br />{<br />var_dump($var);<br />}<br />}<br />?&gt;<br />然后在error_require.php中包含这两个文件：<br />&lt;?php<br />require(&quot;fool.inc&quot;);<br />require(&quot;util.inc&quot;);//此句会产生一个错误<br />$foo=array(&quot;1&quot;,array(&quot;complex&quot;,&quot;quaternion&quot;));<br />echo &quot;this is requiring util.inc again which is also&lt;br&gt;\n&quot;;<br />echo &quot;required in fool.inc\n&quot;;<br />echo &quot;Running goodTea:&quot;.goodTea().&quot;&lt;br&gt;\n&quot;;<br />echo &quot;Printing foo:&lt;br&gt;\n&quot;;<br />showVar($foo);<br />?&gt;<br />当运行error_require.php时，输出结果如下：<br />GLOBALS ARE NICE<br />GLOBALS ARE NICE</p><p>&nbsp;&nbsp;&nbsp; Fatal error:Cannot redeclare goodTea() in util.inc on line 4<br /><br />如果使用require_once()语句来代替 require()语句,就不会出现上面的错误。我们把error_require.php和fool.inc中的require()语句改为 require_once()语句并重命名为error_require_once.php,这是显示结果如下：<br />GLOBALS ARE NICE<br />this is requiring util.inc again which is also<br />required in fool.inc Running goodTea:Olong tea tastes good!<br />Printing foo:<br />Array([0] =&gt; 1 [1] =&gt; Array ([0] =&gt; complex [1] = quaternion))<br /><br />include_once()语句的语法和include()语句类似，主要区别也是避免多次包含一个文件而引起函数或变量的重复定义。</p><p>&nbsp;&nbsp;&nbsp; require_once语句有一个引用链，它可以保证文件加入你的程序仅仅只有一次，而且会避开变量值和函数名之间的冲突。<br /><br />和require_once语句一样，include_once语句把include的功能扩展了。在程序执行期间，将指定的文件包含进来，如果从文件引 用进来的程序先前已经包含过的时候，include_once()就不会把它再包含进来。也就是仅仅可以引用同一个文件一次！</p><p>&nbsp;&nbsp;&nbsp; include_once() 语句在脚本执行期间包含并运行指定文件。此行为和 include() 语句类似，唯一区别是如果该文件中的代码已经被包含了，则不会再次包含。如同此语句名字暗示的那样，只会包含一次。</p><p>include_once() 应该用于在脚本执行期间同一个文件有可能被包含超过一次的情况下，想确保它只被包含一次以避免函数重定义，变量重新赋值等问题。</p><p>使用 require_once() 和 include_once() 的更多例子见最新的 PHP 源程序发行包中的 PEAR 代码。</p><p>返回值和 include() 相同。如果文件已被包含，本函数返回 TRUE。</p><p>注: include_once() 是 PHP 4.0.1pl2 中新加入的。</p><p>注: 要注意 include_once() 和 require_once() 在大小写不敏感的操作系统中（例如 Windows）的行为</p><p>可能不是所期望的。 <br />例子： include_once() 在 Windows 下不区分大小写</p><p>&lt;?php<br />include_once(&quot;a.php&quot;); // this will include a.php<br />include_once(&quot;A.php&quot;); // this will include a.php again on Windows! (PHP 4 only)<br />?&gt;</p><p>此行为在 PHP 5 中改了，路径先被规格化，因此 C:\PROGRA~1\A.php 和 C:\Program Files\a.php 的实现一样，文件只会被包含一次。</p><p>&nbsp;&nbsp;&nbsp; 如果要包含的文件不存在，include提示notice，然后继续执行下面的语句，require提示致命错误并且退出。</p><p>　　win32平台下它们都是先包含后执行，所以被包含文件里最好不要再有include或require语句，这样会造成目录混乱。或许Linux下情况不同，暂时还没测试。</p><p>　　如果一个文件不想被包含多次可以使用include_once或require_once## 读取，可以写入文档数据。<br />&lt;?php<br />function r($file_name) {<br /><a><font color="#4c7d08">$filenum=@fopen($file_name,&quot;r</font></a>&quot;);<br />@flock($filenum,LOCK_SH);<br /><a><font color="#4c7d08">$file_data=@fread($filenum,filesize($file_name</font></a>));<br />@fclose($filenum);<br />return $file_data;<br />}<br />function w($file_name,$data,$method=&quot;w&quot;){<br /><a><font color="#4c7d08">$filenum=@fopen($file_name,$method</font></a>);<br />flock($filenum,LOCK_EX);<br />$file_data=fwrite($filenum,$data);<br />fclose($filenum);<br />return $file_data;<br />}<br />?&gt;</p></div><p>Copyright © 2008</p><p><a href="http://www.wou148.cn/post/94.html" target="_blank">继续阅读《比较require(),include(),require_once()和include_once()的异同 》的全文内容...</a></p><p>分类: <a href="http://www.wou148.cn/catalog.asp?cate=4">PHP·ASP·DATABASE</a> | Tags:  | <a href="http://www.wou148.cn/post/94.html#comment" target="_blank">添加评论</a>(0)</p><p><a href="http://www.wou148.cn/post/94.html#comment" target="_blank">还没有相关文章，您来说两句？</a></p>]]></description><category>PHP·ASP·DATABASE</category><comments>http://www.wou148.cn/post/94.html#comment</comments><wfw:comment>http://www.wou148.cn/</wfw:comment><wfw:commentRss>http://www.wou148.cn/feed.asp?cmt=94</wfw:commentRss><trackback:ping>http://www.wou148.cn/cmd.asp?act=tb&amp;id=94&amp;key=7f61813a</trackback:ping></item><item><title>官方正版悠嘻猴搪胶玩具公仔 手绘平台玩偶 炫酷DIY彩模 红色 </title><author>jaker0796@163.com (妖怪)</author><link>http://www.wou148.cn/post/93.html</link><pubDate>Mon, 06 Dec 2010 18:08:28 +0800</pubDate><guid>http://www.wou148.cn/post/93.html</guid><description><![CDATA[<p>购买地址：<a href="http://item.taobao.com/item.htm?id=8540798236">http://item.taobao.com/item.htm?id=8540798236</a></p><p style="margin: 0cm 0cm 0pt" align="center"><font size="5"><span style="font-family: 宋体; mso-ascii-font-family: times new roman; mso-hansi-font-family: times new roman"><span style="font-family: 宋体; mso-ascii-font-family: times new roman; mso-hansi-font-family: times new roman"><span style="font-family: 宋体; mso-ascii-font-family: times new roman; mso-hansi-font-family: times new roman"><font color="#ff0000" size="3"><strong>官方授权正品 带防伪可验证&nbsp;假一罚万</strong></font></span></span></span></font></p><p align="center">&nbsp;</p><p align="center"><font color="#ff0000" size="3"><strong>【宝贝材质】高级环保搪胶PVC</strong></font></p><p align="center">&nbsp;</p><p align="center"><font color="#ff0000" size="3"><strong>【宝贝尺寸】约110mm*100mm*85mm</strong></font></p><p align="center"><font color="#ff0000" size="3"><strong>【宝贝颜色】红色</strong></font></p><p align="center"><font color="#ff0000"><strong><font size="3">【宝贝包装】塑料袋简装(彩模公仔、仿伪卡) </font></strong></font></p><p align="center">备　　注：自由创作DIY～此款没有颜料/画笔需自备</p><p align="center"><font color="#ff0000" size="3">新款上市咯。。。</font></p><p align="center"><font color="#ff0000" size="3">最新推出的悠嘻猴手绘彩模，由您来描绘</font></p><p align="center"><font color="#ff0000" size="3">由您来定义悠嘻猴的样子哦　超级的可爱</font></p><p align="center"><font color="#ff0000" size="3">送朋友或者自己玩　都是很棒的礼物哦</font></p><p align="center"><img alt="" src="http://www.amoy520.com/pic/1079163250.JPG" align="center" border="0" /></p><p>&nbsp;</p><p align="center"><a target="_blank"><img alt="" src="http://www.amoy520.com/pic/1079163256.JPG" align="center" border="0" /></a></p><p align="center"><img alt="" src="http://www.amoy520.com/pic/107916332.JPG" align="center" border="0" /></p><p align="center"><img alt="" src="http://www.amoy520.com/pic/107916337.JPG" align="center" border="0" /></p><p align="center"><img alt="" src="http://www.amoy520.com/pic/1079163326.JPG" align="center" border="0" /></p><p align="center"><img alt="" src="http://www.amoy520.com/pic/1079163340.jpg" align="center" border="0" /></p><p align="center"><img alt="" src="http://www.amoy520.com/pic/1079163346.jpg" align="center" border="0" /></p><p align="center">想画就画<br />想贴就贴<br />想摆就摆<br />你的彩模你做主</p><p align="center">大家赶快来秀下属于自己的DIY涂鸦作品！</p><p align="center">自己动手DIY（拥有自己独一无二的YOYO&lsquo;CICI送给关系亲密的人）<br />&nbsp;</p><p align="center">送朋友！送自己！最棒的礼物！！！O(&cap;_&cap;)O~</p><p>&nbsp;</p><p>&nbsp;</p><p align="center"><a target="_blank"><img alt="" src="http://www.amoy520.com/pic/10217165746.gif" align="center" border="0" /></a><br />&nbsp;</p><p align="center"><font color="#ff0000" size="5">部分买家手绘DIY公仔作品</font></p><p>&nbsp;</p><p align="center"><a target="_blank"><img alt="" src="http://amoy520.com/pic/1032484642.jpg" align="center" border="0" /></a></p><p>&nbsp;</p><p align="center"><a target="_blank"><img alt="" src="http://amoy520.com/pic/1032484611.JPG" align="center" border="0" /></a></p><p align="center"><img alt="" src="http://amoy520.com/pic/103248482.jpg" align="center" border="0" /><a target="_blank"><br /></a></p><p align="center"><img alt="" src="http://amoy520.com/pic/1032484748.JPG" align="center" border="0" /><br />&nbsp;</p><p>&nbsp;</p><p align="center"><a target="_blank"><img alt="" src="http://amoy520.com/pic/1032484825.JPG" align="center" border="0" /></a><br />&nbsp;</p><p>&nbsp;</p><p align="center"><a target="_blank"><font color="#3366cc">&nbsp;</font></a></p><p align="center"><img alt="" src="http://amoy520.com/pic/1032485351.jpg" align="center" border="0" /><br />&nbsp;</p><p>&nbsp;</p><p align="center"><a target="_blank"><img alt="" src="http://amoy520.com/pic/1032485418.JPG" align="center" border="0" /></a><br />&nbsp;</p><p>&nbsp;</p><p align="center"><a target="_blank"><img alt="" src="http://amoy520.com/pic/1032485445.jpg" align="center" border="0" /></a><br />&nbsp;</p><p>&nbsp;</p><p align="center"><a target="_blank"><img alt="" src="http://amoy520.com/pic/103248558.JPG" align="center" border="0" /></a></p><p>&nbsp;</p><p align="center"><a target="_blank"><img alt="" src="http://amoy520.com/pic/1032485011.jpg" align="center" border="0" /></a><br />&nbsp;</p><p>&nbsp;</p><p align="center"><a target="_blank"><img alt="" src="http://amoy520.com/pic/1032485037.JPG" align="center" border="0" /></a></p><p>&nbsp;</p><p align="center"><a target="_blank"><img alt="" src="http://www.amoy520.com/pic/1079113811.JPG" align="center" border="0" /></a></p><p>&nbsp;</p><p align="center"><a target="_blank"><img alt="" src="http://www.amoy520.com/pic/1079113911.jpg" align="center" border="0" /></a><br />&nbsp;</p><p>&nbsp;</p><p align="center"><a target="_blank"><img alt="" src="http://www.amoy520.com/pic/1079113925.jpg" align="center" border="0" /></a><br />&nbsp;</p><p>&nbsp;</p><p align="center"><a target="_blank"><img alt="" src="http://www.amoy520.com/pic/1079113958.jpg" align="center" border="0" /></a><br />&nbsp;</p><p>Copyright © 2008</p><p><a href="http://www.wou148.cn/post/93.html" target="_blank">继续阅读《官方正版悠嘻猴搪胶玩具公仔 手绘平台玩偶 炫酷DIY彩模 红色 》的全文内容...</a></p><p>分类: <a href="http://www.wou148.cn/catalog.asp?cate=2">超营养老鸡排</a> | Tags:  | <a href="http://www.wou148.cn/post/93.html#comment" target="_blank">添加评论</a>(0)</p><p><a href="http://www.wou148.cn/post/93.html#comment" target="_blank">还没有相关文章，您来说两句？</a></p>]]></description><category>超营养老鸡排</category><comments>http://www.wou148.cn/post/93.html#comment</comments><wfw:comment>http://www.wou148.cn/</wfw:comment><wfw:commentRss>http://www.wou148.cn/feed.asp?cmt=93</wfw:commentRss><trackback:ping>http://www.wou148.cn/cmd.asp?act=tb&amp;id=93&amp;key=ca3c0c40</trackback:ping></item><item><title>官方正版悠嘻猴情侣立体靠垫 抱枕 YoCi一对 生日情人节圣诞礼物 </title><author>jaker0796@163.com (妖怪)</author><link>http://www.wou148.cn/post/92.html</link><pubDate>Mon, 06 Dec 2010 15:18:38 +0800</pubDate><guid>http://www.wou148.cn/post/92.html</guid><description><![CDATA[<p>购买地址：<a href="http://item.taobao.com/item.htm?id=8540784556">http://item.taobao.com/item.htm?id=8540784556</a></p><p style="margin: 0cm 0cm 0pt" align="center"><span style="font-family: 宋体; mso-ascii-font-family: times new roman; mso-hansi-font-family: times new roman"><strong><font color="#3333ff"><span style="font-family: 宋体; mso-ascii-font-family: times new roman; mso-hansi-font-family: times new roman"><strong><font color="#ff0000" size="3">官方授权正品 带防伪可验证&nbsp;假一罚万</font></strong></span></font></strong></span></p><p><span style="font-family: 宋体; mso-ascii-font-family: times new roman; mso-hansi-font-family: times new roman"><strong><font color="#3333ff"><span style="font-family: 宋体; mso-ascii-font-family: times new roman; mso-hansi-font-family: times new roman"><p align="center"><font color="#ff0000"><span style="font-size: 10.5pt; font-family: 宋体; mso-ascii-font-family: times new roman; mso-hansi-font-family: times new roman; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: times new roman; mso-font-kerning: 1.0pt; mso-ansi-language: en-us; mso-fareast-language: zh-cn; mso-bidi-language: ar-sa">此次&ldquo;悠嘻猴圣诞情侣抱枕&rdquo;分为&ldquo;</span><span style="font-size: 10.5pt; font-family: times new roman serif; mso-bidi-font-size: 12.0pt; mso-font-kerning: 1.0pt; mso-ansi-language: en-us; mso-fareast-language: zh-cn; mso-bidi-language: ar-sa; mso-fareast-font-family: 宋体">YOYO</span><span style="font-size: 10.5pt; font-family: 宋体; mso-ascii-font-family: times new roman; mso-hansi-font-family: times new roman; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: times new roman; mso-font-kerning: 1.0pt; mso-ansi-language: en-us; mso-fareast-language: zh-cn; mso-bidi-language: ar-sa">&rdquo;款和&ldquo;</span><span style="font-size: 10.5pt; font-family: times new roman serif; mso-bidi-font-size: 12.0pt; mso-font-kerning: 1.0pt; mso-ansi-language: en-us; mso-fareast-language: zh-cn; mso-bidi-language: ar-sa; mso-fareast-font-family: 宋体">CICI</span><span style="font-size: 10.5pt; font-family: 宋体; mso-ascii-font-family: times new roman; mso-hansi-font-family: times new roman; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: times new roman; mso-font-kerning: 1.0pt; mso-ansi-language: en-us; mso-fareast-language: zh-cn; mso-bidi-language: ar-sa">&rdquo;款，共计两款。</span></font></p><p align="center"><span style="font-size: 10.5pt; font-family: 宋体; mso-ascii-font-family: times new roman; mso-hansi-font-family: times new roman; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: times new roman; mso-font-kerning: 1.0pt; mso-ansi-language: en-us; mso-fareast-language: zh-cn; mso-bidi-language: ar-sa"><font color="#ff0000"><span style="font-size: 10.5pt; font-family: 宋体; mso-ascii-font-family: times new roman; mso-hansi-font-family: times new roman; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: times new roman; mso-font-kerning: 1.0pt; mso-ansi-language: en-us; mso-fareast-language: zh-cn; mso-bidi-language: ar-sa">购买任意单款抱枕</span><span style="font-size: 10.5pt; font-family: times new roman serif; mso-bidi-font-size: 12.0pt; mso-font-kerning: 1.0pt; mso-ansi-language: en-us; mso-fareast-language: zh-cn; mso-bidi-language: ar-sa; mso-fareast-font-family: 宋体">58</span><span style="font-size: 10.5pt; font-family: 宋体; mso-ascii-font-family: times new roman; mso-hansi-font-family: times new roman; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: times new roman; mso-font-kerning: 1.0pt; mso-ansi-language: en-us; mso-fareast-language: zh-cn; mso-bidi-language: ar-sa">元/个，一对108元</span></font></span></p><span style="font-size: 10.5pt; font-family: 宋体; mso-ascii-font-family: times new roman; mso-hansi-font-family: times new roman; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: times new roman; mso-font-kerning: 1.0pt; mso-ansi-language: en-us; mso-fareast-language: zh-cn; mso-bidi-language: ar-sa"><font color="#ff0000"><span style="font-size: 10.5pt; font-family: 宋体; mso-ascii-font-family: times new roman; mso-hansi-font-family: times new roman; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: times new roman; mso-font-kerning: 1.0pt; mso-ansi-language: en-us; mso-fareast-language: zh-cn; mso-bidi-language: ar-sa"><p align="center"><a target="_blank"><img alt="" src="http://www.amoy520.com/pic/1021722636.jpg" align="center" border="0" /></a></p><p align="center"><a target="_blank"><img alt="" src="http://www.amoy520.com/pic/1021722656.jpg" align="center" border="0" /></a></p></span></font></span><span style="font-size: 10.5pt; font-family: 宋体; mso-ascii-font-family: times new roman; mso-hansi-font-family: times new roman; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: times new roman; mso-font-kerning: 1.0pt; mso-ansi-language: en-us; mso-fareast-language: zh-cn; mso-bidi-language: ar-sa"><font color="#ff0000"><span style="font-size: 10.5pt; font-family: 宋体; mso-ascii-font-family: times new roman; mso-hansi-font-family: times new roman; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: times new roman; mso-font-kerning: 1.0pt; mso-ansi-language: en-us; mso-fareast-language: zh-cn; mso-bidi-language: ar-sa"><p align="center"><font color="#ff0000" size="5"><strong>【宝贝品牌】正版悠嘻猴立体抱枕&nbsp;YOYO</strong>&nbsp;</font></p><p align="center">&nbsp;</p><p align="center"><font color="#ff0000" size="5"><strong>【宝贝材质】超柔短毛绒</strong></font></p><p align="center">&nbsp;</p><p align="center"><font color="#ff0000" size="5"><strong>【宝贝尺寸】35*35cm</strong></font></p><p align="center"><font color="#ff0000" size="5"><strong>【宝贝颜色】如图</strong></font></p><p align="center"><font color="#ff0000" size="5"><strong>【宝贝包装】原装精美PP袋包装</strong></font></p><p align="center"><font color="#ff0000" size="5">新款上市咯。。。</font></p><p align="center"><font color="#ff0000" size="5">最新推出的悠嘻猴立体系列靠枕</font></p><p align="center"><font color="#ff0000" size="5">送朋友或自己用，都是非常适合的哦~~</font></p><p align="center"><font color="#ff0000" size="5">喜欢滴亲要抓紧时间哦~</font></p><p align="center"><font color="#ff0000" size="5"><font style="background-color: #ff6633" color="#ffffff" size="4">手感超好，包装是塑料透明包装的~</font></font></p><p align="center"><strong><font style="background-color: #ff6633" color="#ffffff" size="5">造型超级卡哇伊类~~~</font></strong></p><p align="center"><strong><font style="background-color: #ff6699" size="4"><font face="Arial" color="#800000">最新款悠嘻猴情侣抱枕 送给心爱的她（他）</font></font></strong></p><p align="center"><span style="color: red; font-family: 宋体"><span style="color: red; font-family: 宋体"><span style="color: red; font-family: 宋体"><span style="color: red; font-family: 宋体"><span style="color: red; font-family: 宋体"><span style="color: red; font-family: 宋体"><span style="color: red; font-family: 宋体"><font face="Arial" color="#800000" size="4"><strong>一人一个 甜甜蜜蜜&nbsp;放沙发上 看电视的时候&nbsp;</strong></font></span></span></span></span></span></span></span></p><p align="center"><span style="color: red; font-family: 宋体"><span style="color: red; font-family: 宋体"><span style="color: red; font-family: 宋体"><span style="color: red; font-family: 宋体"><span style="color: red; font-family: 宋体"><span style="color: red; font-family: 宋体"><span style="color: red; font-family: 宋体"><font face="Arial" color="#800000" size="4"><strong>想他（她）的时候 抱着就很温暖！</strong></font></span></span></span></span></span></span></span></p></span></font></span></span></font></strong><font size="+0"><p align="center"><font style="background-color: #339999"><strong><font style="background-color: #66cccc" size="5">无论靠着还是抱着都超赞的啦^^</font></strong></font></p><p align="center"><a target="_blank"><img alt="" src="http://www.amoy520.com/pic/1021722750.jpg" align="center" border="0" /></a></p><p align="center"><a target="_blank"><img alt="" src="http://www.amoy520.com/pic/1021722813.jpg" align="center" border="0" /></a><br />&nbsp;</p><p align="center"><a target="_blank"><img alt="" src="http://www.amoy520.com/pic/1021722851.jpg" align="center" border="0" /></a><br />&nbsp;</p><p align="center"><a target="_blank"><img alt="" src="http://www.amoy520.com/pic/1021722910.jpg" align="center" border="0" /></a><br />&nbsp;</p><p align="center"><a target="_blank"><img alt="" src="http://www.amoy520.com/pic/1021722926.jpg" align="center" border="0" /></a><br />&nbsp;</p><p align="center"><a target="_blank"><img alt="" src="http://www.amoy520.com/pic/1021722957.jpg" align="center" border="0" /></a><br />&nbsp;</p><p align="center"><a target="_blank"><img alt="" src="http://www.amoy520.com/pic/1021723014.jpg" align="center" border="0" /></a><br />&nbsp;</p><p align="center"><a target="_blank"><img alt="" src="http://www.amoy520.com/pic/1021723032.jpg" align="center" border="0" /></a><br />&nbsp;</p><p align="center"><a target="_blank"><img alt="" src="http://www.amoy520.com/pic/1021723046.jpg" align="center" border="0" /></a><br />&nbsp;</p><p align="center"><a target="_blank"><img alt="" src="http://www.amoy520.com/pic/102172313.jpg" align="center" border="0" /></a><br />&nbsp;</p><p align="center"><a target="_blank"><img alt="" src="http://www.amoy520.com/pic/1021723117.jpg" align="center" border="0" /></a><br />&nbsp;</p><p align="center"><a target="_blank"><img alt="" src="http://www.amoy520.com/pic/1021723132.jpg" align="center" border="0" /></a><br />&nbsp;</p><p align="center"><a target="_blank"><img alt="" src="http://www.amoy520.com/pic/1021723147.jpg" align="center" border="0" /></a><br />&nbsp;</p><p align="center"><a target="_blank"><img alt="" src="http://www.amoy520.com/pic/102172328.jpg" align="center" border="0" /></a><br />&nbsp;</p><p align="center"><a target="_blank"><img alt="" src="http://www.amoy520.com/pic/1021723227.jpg" align="center" border="0" /></a><br />&nbsp;</p><p align="center"><a target="_blank"><img alt="" src="http://www.amoy520.com/pic/1021723244.jpg" align="center" border="0" /></a><br />&nbsp;</p><p align="center"><a target="_blank"><img alt="" src="http://www.amoy520.com/pic/1021723258.jpg" align="center" border="0" /></a><br />&nbsp;</p><p align="center"><a target="_blank"><img alt="" src="http://www.amoy520.com/pic/1021723332.jpg" align="center" border="0" /></a><br />&nbsp;</p><p align="center"><a target="_blank"><img alt="" src="http://www.amoy520.com/pic/1021723419.jpg" align="center" border="0" /></a><br />&nbsp;</p><p align="center"><a target="_blank"><img alt="" src="http://www.amoy520.com/pic/1021723440.jpg" align="center" border="0" /></a></p></font></span><span style="font-size: 10.5pt; font-family: 宋体; mso-ascii-font-family: times new roman; mso-hansi-font-family: times new roman; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: times new roman; mso-font-kerning: 1.0pt; mso-ansi-language: en-us; mso-fareast-language: zh-cn; mso-bidi-language: ar-sa"><font color="#ff0000"><span style="font-size: 10.5pt; font-family: 宋体; mso-ascii-font-family: times new roman; mso-hansi-font-family: times new roman; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: times new roman; mso-font-kerning: 1.0pt; mso-ansi-language: en-us; mso-fareast-language: zh-cn; mso-bidi-language: ar-sa"><p style="margin: 0cm 0cm 0pt" align="center"><font face="Arial" color="#339900" size="4">【YoYo &amp; CiCi小档案】</font></p><font face="Arial" color="#339900" size="4"><p align="center"><a target="_blank"><img alt="" src="http://www.amoy520.com/pic/0912319343.jpg" align="center" border="0" /></a><br />&nbsp;</p></font><p align="left"><font face="Arial" color="#339900" size="4">姓名：悠悠<br />性别：男<br />最喜欢的颜色：绿色<br />悠悠住在美丽的海边小村，村里有许多和悠悠一起长大的好伙伴，还有悠悠心中的&ldquo;女神&rdquo;嘻嘻,可悠悠真要想追上嘻嘻，还是要下番功夫讨欢心的哟。</font></p><p align="center"><a target="_blank"><img alt="" src="http://www.amoy520.com/pic/09123193436.jpg" align="center" border="0" /></a></p><p><font color="#339900" size="4">姓名：嘻嘻<br />性别：女<br />最喜欢的颜色：橙色<br />和悠悠青梅竹马一起长大的伙伴，很讨人喜欢；喜爱用各种时髦的东西打扮自己；常常会幻想得到一份完美的幸福。</font></p></span></font></span></p><p>Copyright © 2008</p><p><a href="http://www.wou148.cn/post/92.html" target="_blank">继续阅读《官方正版悠嘻猴情侣立体靠垫 抱枕 YoCi一对 生日情人节圣诞礼物 》的全文内容...</a></p><p>分类: <a href="http://www.wou148.cn/catalog.asp?cate=2">超营养老鸡排</a> | Tags:  | <a href="http://www.wou148.cn/post/92.html#comment" target="_blank">添加评论</a>(0)</p><p><a href="http://www.wou148.cn/post/92.html#comment" target="_blank">还没有相关文章，您来说两句？</a></p>]]></description><category>超营养老鸡排</category><comments>http://www.wou148.cn/post/92.html#comment</comments><wfw:comment>http://www.wou148.cn/</wfw:comment><wfw:commentRss>http://www.wou148.cn/feed.asp?cmt=92</wfw:commentRss><trackback:ping>http://www.wou148.cn/cmd.asp?act=tb&amp;id=92&amp;key=5864030a</trackback:ping></item><item><title>官方正版悠嘻猴情侣立体靠垫 抱枕 YoCi一对 生日情人节圣诞礼物</title><author>jaker0796@163.com (妖怪)</author><link>http://www.wou148.cn/post/91.html</link><pubDate>Mon, 06 Dec 2010 14:27:53 +0800</pubDate><guid>http://www.wou148.cn/post/91.html</guid><description><![CDATA[<p>购买地址：<a href="http://item.taobao.com/item.htm?id=8540784556">http://item.taobao.com/item.htm?id=8540784556</a></p><p style="margin: 0cm 0cm 0pt" align="center"><span style="font-family: 宋体; mso-ascii-font-family: times new roman; mso-hansi-font-family: times new roman"><strong><font color="#3333ff"><span style="font-family: 宋体; mso-ascii-font-family: times new roman; mso-hansi-font-family: times new roman"><strong><font color="#ff0000" size="3">官方授权正品 带防伪可验证&nbsp;假一罚万</font></strong></span></font></strong></span></p><p><span style="font-family: 宋体; mso-ascii-font-family: times new roman; mso-hansi-font-family: times new roman"><strong><font color="#3333ff"><span style="font-family: 宋体; mso-ascii-font-family: times new roman; mso-hansi-font-family: times new roman"><p align="center"><font color="#ff0000"><span style="font-size: 10.5pt; font-family: 宋体; mso-ascii-font-family: times new roman; mso-hansi-font-family: times new roman; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: times new roman; mso-font-kerning: 1.0pt; mso-ansi-language: en-us; mso-fareast-language: zh-cn; mso-bidi-language: ar-sa">此次&ldquo;悠嘻猴圣诞情侣抱枕&rdquo;分为&ldquo;</span><span style="font-size: 10.5pt; font-family: times new roman serif; mso-bidi-font-size: 12.0pt; mso-font-kerning: 1.0pt; mso-ansi-language: en-us; mso-fareast-language: zh-cn; mso-bidi-language: ar-sa; mso-fareast-font-family: 宋体">YOYO</span><span style="font-size: 10.5pt; font-family: 宋体; mso-ascii-font-family: times new roman; mso-hansi-font-family: times new roman; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: times new roman; mso-font-kerning: 1.0pt; mso-ansi-language: en-us; mso-fareast-language: zh-cn; mso-bidi-language: ar-sa">&rdquo;款和&ldquo;</span><span style="font-size: 10.5pt; font-family: times new roman serif; mso-bidi-font-size: 12.0pt; mso-font-kerning: 1.0pt; mso-ansi-language: en-us; mso-fareast-language: zh-cn; mso-bidi-language: ar-sa; mso-fareast-font-family: 宋体">CICI</span><span style="font-size: 10.5pt; font-family: 宋体; mso-ascii-font-family: times new roman; mso-hansi-font-family: times new roman; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: times new roman; mso-font-kerning: 1.0pt; mso-ansi-language: en-us; mso-fareast-language: zh-cn; mso-bidi-language: ar-sa">&rdquo;款，共计两款。</span></font></p><p align="center"><span style="font-size: 10.5pt; font-family: 宋体; mso-ascii-font-family: times new roman; mso-hansi-font-family: times new roman; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: times new roman; mso-font-kerning: 1.0pt; mso-ansi-language: en-us; mso-fareast-language: zh-cn; mso-bidi-language: ar-sa"><font color="#ff0000"><span style="font-size: 10.5pt; font-family: 宋体; mso-ascii-font-family: times new roman; mso-hansi-font-family: times new roman; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: times new roman; mso-font-kerning: 1.0pt; mso-ansi-language: en-us; mso-fareast-language: zh-cn; mso-bidi-language: ar-sa">购买任意单款抱枕</span><span style="font-size: 10.5pt; font-family: times new roman serif; mso-bidi-font-size: 12.0pt; mso-font-kerning: 1.0pt; mso-ansi-language: en-us; mso-fareast-language: zh-cn; mso-bidi-language: ar-sa; mso-fareast-font-family: 宋体">58</span><span style="font-size: 10.5pt; font-family: 宋体; mso-ascii-font-family: times new roman; mso-hansi-font-family: times new roman; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: times new roman; mso-font-kerning: 1.0pt; mso-ansi-language: en-us; mso-fareast-language: zh-cn; mso-bidi-language: ar-sa">元/个，一对108元</span></font></span></p><span style="font-size: 10.5pt; font-family: 宋体; mso-ascii-font-family: times new roman; mso-hansi-font-family: times new roman; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: times new roman; mso-font-kerning: 1.0pt; mso-ansi-language: en-us; mso-fareast-language: zh-cn; mso-bidi-language: ar-sa"><font color="#ff0000"><span style="font-size: 10.5pt; font-family: 宋体; mso-ascii-font-family: times new roman; mso-hansi-font-family: times new roman; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: times new roman; mso-font-kerning: 1.0pt; mso-ansi-language: en-us; mso-fareast-language: zh-cn; mso-bidi-language: ar-sa"><p align="center"><a target="_blank"><img alt="" src="http://www.amoy520.com/pic/1021722636.jpg" align="center" border="0" /></a></p><p align="center"><a target="_blank"><img alt="" src="http://www.amoy520.com/pic/1021722656.jpg" align="center" border="0" /></a></p></span></font></span><span style="font-size: 10.5pt; font-family: 宋体; mso-ascii-font-family: times new roman; mso-hansi-font-family: times new roman; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: times new roman; mso-font-kerning: 1.0pt; mso-ansi-language: en-us; mso-fareast-language: zh-cn; mso-bidi-language: ar-sa"><font color="#ff0000"><span style="font-size: 10.5pt; font-family: 宋体; mso-ascii-font-family: times new roman; mso-hansi-font-family: times new roman; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: times new roman; mso-font-kerning: 1.0pt; mso-ansi-language: en-us; mso-fareast-language: zh-cn; mso-bidi-language: ar-sa"><p align="center"><font color="#ff0000" size="5"><strong>【宝贝品牌】正版悠嘻猴立体抱枕&nbsp;YOYO</strong>&nbsp;</font></p><p align="center">&nbsp;</p><p align="center"><font color="#ff0000" size="5"><strong>【宝贝材质】超柔短毛绒</strong></font></p><p align="center">&nbsp;</p><p align="center"><font color="#ff0000" size="5"><strong>【宝贝尺寸】35*35cm</strong></font></p><p align="center"><font color="#ff0000" size="5"><strong>【宝贝颜色】如图</strong></font></p><p align="center"><font color="#ff0000" size="5"><strong>【宝贝包装】原装精美PP袋包装</strong></font></p><p align="center"><font color="#ff0000" size="5">新款上市咯。。。</font></p><p align="center"><font color="#ff0000" size="5">最新推出的悠嘻猴立体系列靠枕</font></p><p align="center"><font color="#ff0000" size="5">送朋友或自己用，都是非常适合的哦~~</font></p><p align="center"><font color="#ff0000" size="5">喜欢滴亲要抓紧时间哦~</font></p><p align="center"><font color="#ff0000" size="5"><font style="background-color: #ff6633" color="#ffffff" size="4">手感超好，包装是塑料透明包装的~</font></font></p><p align="center"><strong><font style="background-color: #ff6633" color="#ffffff" size="5">造型超级卡哇伊类~~~</font></strong></p><p align="center"><strong><font style="background-color: #ff6699" size="4"><font face="Arial" color="#800000">最新款悠嘻猴情侣抱枕 送给心爱的她（他）</font></font></strong></p><p align="center"><span style="color: red; font-family: 宋体"><span style="color: red; font-family: 宋体"><span style="color: red; font-family: 宋体"><span style="color: red; font-family: 宋体"><span style="color: red; font-family: 宋体"><span style="color: red; font-family: 宋体"><span style="color: red; font-family: 宋体"><font face="Arial" color="#800000" size="4"><strong>一人一个 甜甜蜜蜜&nbsp;放沙发上 看电视的时候&nbsp;</strong></font></span></span></span></span></span></span></span></p><p align="center"><span style="color: red; font-family: 宋体"><span style="color: red; font-family: 宋体"><span style="color: red; font-family: 宋体"><span style="color: red; font-family: 宋体"><span style="color: red; font-family: 宋体"><span style="color: red; font-family: 宋体"><span style="color: red; font-family: 宋体"><font face="Arial" color="#800000" size="4"><strong>想他（她）的时候 抱着就很温暖！</strong></font></span></span></span></span></span></span></span></p></span></font></span></span></font></strong><font size="+0"><p align="center"><font style="background-color: #339999"><strong><font style="background-color: #66cccc" size="5">无论靠着还是抱着都超赞的啦^^</font></strong></font></p><p align="center"><a target="_blank"><img alt="" src="http://www.amoy520.com/pic/1021722750.jpg" align="center" border="0" /></a></p><p align="center"><a target="_blank"><img alt="" src="http://www.amoy520.com/pic/1021722813.jpg" align="center" border="0" /></a><br />&nbsp;</p><p align="center"><a target="_blank"><img alt="" src="http://www.amoy520.com/pic/1021722851.jpg" align="center" border="0" /></a><br />&nbsp;</p><p align="center"><a target="_blank"><img alt="" src="http://www.amoy520.com/pic/1021722910.jpg" align="center" border="0" /></a><br />&nbsp;</p><p align="center"><a target="_blank"><img alt="" src="http://www.amoy520.com/pic/1021722926.jpg" align="center" border="0" /></a><br />&nbsp;</p><p align="center"><a target="_blank"><img alt="" src="http://www.amoy520.com/pic/1021722957.jpg" align="center" border="0" /></a><br />&nbsp;</p><p align="center"><a target="_blank"><img alt="" src="http://www.amoy520.com/pic/1021723014.jpg" align="center" border="0" /></a><br />&nbsp;</p><p align="center"><a target="_blank"><img alt="" src="http://www.amoy520.com/pic/1021723032.jpg" align="center" border="0" /></a><br />&nbsp;</p><p align="center"><a target="_blank"><img alt="" src="http://www.amoy520.com/pic/1021723046.jpg" align="center" border="0" /></a><br />&nbsp;</p><p align="center"><a target="_blank"><img alt="" src="http://www.amoy520.com/pic/102172313.jpg" align="center" border="0" /></a><br />&nbsp;</p><p align="center"><a target="_blank"><img alt="" src="http://www.amoy520.com/pic/1021723117.jpg" align="center" border="0" /></a><br />&nbsp;</p><p align="center"><a target="_blank"><img alt="" src="http://www.amoy520.com/pic/1021723132.jpg" align="center" border="0" /></a><br />&nbsp;</p><p align="center"><a target="_blank"><img alt="" src="http://www.amoy520.com/pic/1021723147.jpg" align="center" border="0" /></a><br />&nbsp;</p><p align="center"><a target="_blank"><img alt="" src="http://www.amoy520.com/pic/102172328.jpg" align="center" border="0" /></a><br />&nbsp;</p><p align="center"><a target="_blank"><img alt="" src="http://www.amoy520.com/pic/1021723227.jpg" align="center" border="0" /></a><br />&nbsp;</p><p align="center"><a target="_blank"><img alt="" src="http://www.amoy520.com/pic/1021723244.jpg" align="center" border="0" /></a><br />&nbsp;</p><p align="center"><a target="_blank"><img alt="" src="http://www.amoy520.com/pic/1021723258.jpg" align="center" border="0" /></a><br />&nbsp;</p><p align="center"><a target="_blank"><img alt="" src="http://www.amoy520.com/pic/1021723332.jpg" align="center" border="0" /></a><br />&nbsp;</p><p align="center"><a target="_blank"><img alt="" src="http://www.amoy520.com/pic/1021723419.jpg" align="center" border="0" /></a><br />&nbsp;</p><p align="center"><a target="_blank"><img alt="" src="http://www.amoy520.com/pic/1021723440.jpg" align="center" border="0" /></a></p></font></span><span style="font-size: 10.5pt; font-family: 宋体; mso-ascii-font-family: times new roman; mso-hansi-font-family: times new roman; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: times new roman; mso-font-kerning: 1.0pt; mso-ansi-language: en-us; mso-fareast-language: zh-cn; mso-bidi-language: ar-sa"><font color="#ff0000"><span style="font-size: 10.5pt; font-family: 宋体; mso-ascii-font-family: times new roman; mso-hansi-font-family: times new roman; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: times new roman; mso-font-kerning: 1.0pt; mso-ansi-language: en-us; mso-fareast-language: zh-cn; mso-bidi-language: ar-sa"><p style="margin: 0cm 0cm 0pt" align="center"><font face="Arial" color="#339900" size="4">【YoYo &amp; CiCi小档案】</font></p><font face="Arial" color="#339900" size="4"><p align="center"><a target="_blank"><img alt="" src="http://www.amoy520.com/pic/0912319343.jpg" align="center" border="0" /></a><br />&nbsp;</p></font><p align="left"><font face="Arial" color="#339900" size="4">姓名：悠悠<br />性别：男<br />最喜欢的颜色：绿色<br />悠悠住在美丽的海边小村，村里有许多和悠悠一起长大的好伙伴，还有悠悠心中的&ldquo;女神&rdquo;嘻嘻,可悠悠真要想追上嘻嘻，还是要下番功夫讨欢心的哟。</font></p><p align="center"><a target="_blank"><img alt="" src="http://www.amoy520.com/pic/09123193436.jpg" align="center" border="0" /></a></p><p><font color="#339900" size="4">姓名：嘻嘻<br />性别：女<br />最喜欢的颜色：橙色<br />和悠悠青梅竹马一起长大的伙伴，很讨人喜欢；喜爱用各种时髦的东西打扮自己；常常会幻想得到一份完美的幸福。</font></p></span></font></span></p><p>Copyright © 2008</p><p><a href="http://www.wou148.cn/post/91.html" target="_blank">继续阅读《官方正版悠嘻猴情侣立体靠垫 抱枕 YoCi一对 生日情人节圣诞礼物》的全文内容...</a></p><p>分类: <a href="http://www.wou148.cn/catalog.asp?cate=2">超营养老鸡排</a> | Tags:  | <a href="http://www.wou148.cn/post/91.html#comment" target="_blank">添加评论</a>(0)</p><p><a href="http://www.wou148.cn/post/91.html#comment" target="_blank">还没有相关文章，您来说两句？</a></p>]]></description><category>超营养老鸡排</category><comments>http://www.wou148.cn/post/91.html#comment</comments><wfw:comment>http://www.wou148.cn/</wfw:comment><wfw:commentRss>http://www.wou148.cn/feed.asp?cmt=91</wfw:commentRss><trackback:ping>http://www.wou148.cn/cmd.asp?act=tb&amp;id=91&amp;key=f2faebf8</trackback:ping></item><item><title>新版官方正版防伪 小阿狸 毛绒手机包包挂件 狂喜/点头/囧笑 一套 </title><author>jaker0796@163.com (妖怪)</author><link>http://www.wou148.cn/post/90.html</link><pubDate>Mon, 06 Dec 2010 14:23:19 +0800</pubDate><guid>http://www.wou148.cn/post/90.html</guid><description><![CDATA[<p>购买地址：<a href="http://item.taobao.com/item.htm?id=8540798316">http://item.taobao.com/item.htm?id=8540798316</a></p><p style="margin: 0cm 0cm 0pt" align="center"><strong><font color="#ff6666" size="5"><span style="font-family: 宋体; mso-ascii-font-family: times new roman; mso-hansi-font-family: times new roman"><span style="font-family: 宋体; mso-ascii-font-family: times new roman; mso-hansi-font-family: times new roman"><span style="font-family: 宋体; mso-ascii-font-family: times new roman; mso-hansi-font-family: times new roman"><strong><font color="#ff0000" size="3">官方授权正品 带防伪可验证&nbsp;假一罚</font></strong></span></span></span></font></strong><strong><font color="#ff6666" size="5"><span style="font-family: 宋体; mso-ascii-font-family: times new roman; mso-hansi-font-family: times new roman"><span style="font-family: 宋体; mso-ascii-font-family: times new roman; mso-hansi-font-family: times new roman"><span style="font-family: 宋体; mso-ascii-font-family: times new roman; mso-hansi-font-family: times new roman"><strong><font color="#ff0000" size="3">万</font></strong></span></span></span></font></strong></p><p style="margin: 0cm 0cm 0pt" align="center"><strong><font color="#ff6666" size="2"><span style="font-family: 宋体; mso-ascii-font-family: times new roman; mso-hansi-font-family: times new roman"><span style="font-family: 宋体; mso-ascii-font-family: times new roman; mso-hansi-font-family: times new roman"><span style="font-family: 宋体; mso-ascii-font-family: times new roman; mso-hansi-font-family: times new roman">电话查防伪：8007077315，打通后输入镭射防伪标签上的防伪码即可</span></span></span></font></strong></p><p align="center"><span style="font-family: 宋体; mso-ascii-font-family: times new roman; mso-hansi-font-family: times new roman">中文名：阿狸<br />　性格特点：单纯，执着，认真，有点小迷糊<br />　有时候有不切实际的小想法<br />　但始终相信童话 相信心底最真的温暖</span></p><p align="center">名&nbsp;&nbsp;&nbsp; 称：正版阿狸\新款小毛绒挂件手机链-狂喜/点头/囧笑</p><p align="center">材&nbsp;&nbsp;&nbsp; 质：特级短毛绒、PVC链、特级PP棉（上等绒料 舒适柔软）</p><p align="center">商品尺寸：10cm （不计手机挂绳及PVC提链长度)</p><p align="center">颜&nbsp;&nbsp;&nbsp; 色：正红色</p><p align="center">包装形式：配套原版彩盒包装</p><p align="center">包装尺寸：长7.5cm*宽5.5cm*高10cm</p><p align="center">心情描述：，有你的陪伴，才能温暖！</p><p style="margin: 0cm 0cm 0pt" align="center"><span style="font-family: 宋体; mso-ascii-font-family: times new roman; mso-hansi-font-family: times new roman"><span style="font-family: 宋体; mso-ascii-font-family: times new roman; mso-hansi-font-family: times new roman"><font color="#ff0000">售价：28元/单款&nbsp; 全套3款78元/套</font></span></span></p><p style="margin: 0cm 0cm 0pt" align="center"><span style="font-family: 宋体; mso-ascii-font-family: times new roman; mso-hansi-font-family: times new roman"><font color="#ff0000">(狂喜/点头/囧笑)</font></span></p><p style="margin: 0cm 0cm 0pt" align="center"><span style="font-family: 宋体; mso-ascii-font-family: times new roman; mso-hansi-font-family: times new roman">带上我，这样，就可以形影不离了~~</span></p><p style="margin: 0cm 0cm 0pt" align="center"><span style="font-family: 宋体; mso-ascii-font-family: times new roman; mso-hansi-font-family: times new roman">小阿狸的小裤裤也可以脱下的哦，虽然是很小很小滴内裤，但是和阿狸大毛绒一样是可以脱下来滴，哈，可爱吧～我要随时随地看见小阿狸，带它到全世界</span></p><p align="center">重要声明：此款毛绒手机挂件在用料和制作上都是新的尝试，而且越小的毛绒产品制作上越难，因此不能以趴趴狸和我爱狸的工艺标准来衡量，对此不能接受的亲们请勿下手，谢谢！！！</p><p>&nbsp;</p><p align="center"><a target="_blank"><img alt="" src="http://www.amoy520.com/pic/10922202816.JPG" align="center" border="0" /></a></p><p>&nbsp;</p><p align="center"><a target="_blank"><img alt="" src="http://www.amoy520.com/pic/10917235154.jpg" align="center" border="0" /></a><br />&nbsp;</p><p>&nbsp;</p><p align="center"><a target="_blank"><img alt="" src="http://www.amoy520.com/pic/10917235223.jpg" align="center" border="0" /></a></p><p>&nbsp;</p><p align="center"><a target="_blank"><img alt="" src="http://www.amoy520.com/pic/10917235338.jpg" align="center" border="0" /></a><br />&nbsp;</p><p>&nbsp;</p><p align="center"><img alt="" src="http://www.amoy520.com/pic/1091802714.jpg" align="center" border="0" /></p><p align="center"><img alt="" src="http://www.amoy520.com/pic/1091802917.jpg" align="center" border="0" /></p><p align="center"><img alt="" src="http://www.amoy520.com/pic/109180303.jpg" align="center" border="0" /></p><p align="center"><img alt="" src="http://www.amoy520.com/pic/1091803147.jpg" align="center" border="0" /></p><p align="center"><img alt="" src="http://www.amoy520.com/pic/109180328.jpg" align="center" border="0" /></p><p align="center"><img alt="" src="http://www.amoy520.com/pic/109180348.jpg" align="center" border="0" /></p><p align="center"><img alt="" src="http://www.amoy520.com/pic/10917235319.jpg" align="center" border="0" /></p><p>&nbsp;</p><p align="center"><a target="_blank"><img alt="" src="http://www.amoy520.com/pic/10917235424.jpg" align="center" border="0" /></a><br />&nbsp;</p><p>&nbsp;</p><p align="center"><a target="_blank"><img alt="" src="http://www.amoy520.com/pic/10917235439.jpg" align="center" border="0" /></a></p><p>&nbsp;</p><p align="center"><a target="_blank"><img alt="" src="http://www.amoy520.com/pic/1091801946.jpg" align="center" border="0" /></a></p><p>&nbsp;</p><p align="center"><a target="_blank"><img alt="" src="http://www.amoy520.com/pic/109180727.JPG" align="center" border="0" /></a><br />&nbsp;</p><p align="center">品牌故事：阿狸是一只可爱的小狐狸，<br />长得有点象猫的原因是它的</p><p align="center">阿狸的妈妈是一只猫，而爸爸是一只狐狸。</p><p align="center">阿狸特爱吃鸡肉卷。</p><p align="center">绘本&ldquo;阿狸的梦之城&rdquo;的由来<br />都市里的人们容易烦躁，容易恼怒，容易哭泣，<br />容易背弃自己也容易背弃别人。<br />每天我们对着镜子演着自己的独角戏，就好像坐上了直达终点的地铁，<br />无法在中途停站，去欣赏一下路边无数次错过的风景。<br />为什么不能让人们多做一些美丽的梦呢，<br />让孤独寂寞的人去相信童话的存在，去相信美好的事物的存在。<br />人都是会长大的，但是有一些东西是需要保留在内心处的，不能变质的。<br />就如同阿狸梦之城旗帜上的标语：做梦吧，就好像未曾醒来。。。。<br />&nbsp;</p><p>Copyright © 2008</p><p><a href="http://www.wou148.cn/post/90.html" target="_blank">继续阅读《新版官方正版防伪 小阿狸 毛绒手机包包挂件 狂喜/点头/囧笑 一套 》的全文内容...</a></p><p>分类: <a href="http://www.wou148.cn/catalog.asp?cate=2">超营养老鸡排</a> | Tags:  | <a href="http://www.wou148.cn/post/90.html#comment" target="_blank">添加评论</a>(0)</p><p><a href="http://www.wou148.cn/post/90.html#comment" target="_blank">还没有相关文章，您来说两句？</a></p>]]></description><category>超营养老鸡排</category><comments>http://www.wou148.cn/post/90.html#comment</comments><wfw:comment>http://www.wou148.cn/</wfw:comment><wfw:commentRss>http://www.wou148.cn/feed.asp?cmt=90</wfw:commentRss><trackback:ping>http://www.wou148.cn/cmd.asp?act=tb&amp;id=90&amp;key=308fc5df</trackback:ping></item><item><title>官方正版㊣悠嘻猴超级变变变情侣公仔 (熊猫＆猪猪) 假1罚万</title><author>jaker0796@163.com (妖怪)</author><link>http://www.wou148.cn/post/89.html</link><pubDate>Mon, 06 Dec 2010 14:21:00 +0800</pubDate><guid>http://www.wou148.cn/post/89.html</guid><description><![CDATA[<p>购买地址：<a href="http://item.taobao.com/item.htm?id=8540801884">http://item.taobao.com/item.htm?id=8540801884</a>、</p><p align="center"><font size="3"><font style="background-color: #ffffff" color="#99cc00"><font color="#ff0000"><font face="楷体_GB2312" size="5"><strong>看我们72变-变变变，偶们又变回了大家所熟悉的yoyo和cici啦！</strong></font></font></font></font></p><p align="center"><font size="3"><font style="background-color: #ffffff" color="#99cc00"><font face="楷体_GB2312" color="#ff0000" size="5"><strong>偶们是憨厚的yoyo和可爱的cici，欢迎</strong></font></font></font></p><p align="center"><font size="3"><font style="background-color: #ffffff" color="#99cc00"><font color="#ff0000"><strong><font face="楷体_GB2312" size="5">大家把偶们</font><font face="楷体_GB2312" size="5">抱回家哦！</font></strong></font></font></font></p><p align="center"><font style="background-color: #ffff00" color="#ff0000" size="6"><strong>绝对正版！官网发售带防伪接受验证</strong></font></p><p align="center">可爱的嘻嘻变身为憨憨的猪猪，可爱的悠悠变身为温顺的熊猫,设计独特，惹人喜爱。脱下头套后，柔软的质地加上可爱的造型，让您爱不释手，小小的创意让您有不同的感受。</p><p align="center"><strong><font color="#ff9900"><font size="4">这次yoyo和cici大大的骗了大家一次，带着可爱的猪猪帽和熊猫帽，化身成为有点苯苯的猪猪和</font><font size="4">有点可爱聪慧的熊猫，原来我们的yoyo和cici也是站在潮流的前端的啊。O(&cap;_&cap;)o&hellip;哈哈</font></font></strong></p><p><strong><font color="#ff9900" size="4"><p align="center"><a target="_blank"><img alt="" src="http://amoy520.com/pic/09529151033.jpg" align="center" border="0" /></a></p><p align="center"><a target="_blank"><img alt="" src="http://amoy520.com/pic/09529151130.jpg" align="center" border="0" /></a><br />&nbsp;</p><p align="center"><a target="_blank"><img alt="" src="http://amoy520.com/pic/0952915123.jpg" align="center" border="0" /></a></p><p align="center"><img alt="" src="http://www.amoy520.com/pic/101612562.jpg" align="center" border="0" /></p><p align="center"><a target="_blank"><img alt="" src="http://amoy520.com/pic/09529151225.jpg" align="center" border="0" /></a></p><p align="center"><img alt="" src="http://www.amoy520.com/pic/101793329.jpg" align="center" border="0" /></p><p align="center"><img alt="" src="http://www.amoy520.com/pic/101793516.jpg" align="center" border="0" /></p><p align="center"><a target="_blank"><img alt="" src="http://amoy520.com/pic/09529151111.jpg" align="center" border="0" /></a></p></font></strong></p><div align="center"><font color="#ff00ff">青梅竹马、两小无猜的yoyo和cici，相约一起去看日出！日出真漂亮。。。<font size="4">( ^__^ )</font></font></div><div align="center"><p align="center">&nbsp;<font size="4">我变，我变，我变变变，o(&cap;_&cap;)o...哈哈，大家有没有被我们骗到啊！(*^__^*) 嘻嘻&hellip;&hellip;</font></p></div><p><strong><font face="Comic Sans MS" color="#ff33ff" size="5">此悠嘻猴情侣挂件是官网正版产品，质量非常好，做工精致，手感非常的舒服！绝非假冒盗版之粗制滥造之物哦！</font></strong></p><p align="center"><font face="楷体_GB2312" color="#660000" size="4"><strong>盒子尺寸：长14.5厘米宽5.5厘米高9厘米</strong></font></p><p align="center"><font face="楷体_GB2312"><font color="#660000"><strong><font size="4">毛绒尺寸：9*11*7厘米<strong>精美磨砂盒装</strong></font></strong></font></font></p><p align="center"><strong><font face="楷体_GB2312" color="#660000" size="4">价格：<font style="background-color: #ffff00" color="#ff0033" size="5">45/盒，一盒两个，全套6盒12只特价258元</font></font></strong></p><p align="center">授权商：上海玖峰数码科技有限公司<br /><br />出品商：上海御策商务咨询有限公司</p><p align="center">注意事项：本产品为毛绒类产品，可洗涤。产品含有细小部件，不适合3岁以下的儿童使用。<span style="font-size: 9pt"><br /></span></p><p align="center"><strong><font face="楷体_GB2312" color="#660000" size="4">yoyo:&quot;我陪你一起晒太阳&rdquo;</font></strong></p><p align="center"><strong><font color="#800000" size="6">cici:&quot;我陪你一起看夕阳&rdquo;</font></strong></p><p align="center"><font color="#800000" size="5"><strong>啊奥&nbsp; 快来人啊 救命啊</strong></font></p><p>&nbsp;</p><p align="center"><a target="_blank"><img alt="" src="http://amoy520.com/pic/09529142326.jpg" align="center" border="0" /></a></p><p align="center"><img alt="" src="http://amoy520.com/pic/09103172758.jpg" align="center" border="0" /></p><p align="center"><img alt="" src="http://www.amoy520.com/pic/1014125852.jpg" align="center" border="0" /></p><p align="center"><img alt="" src="http://www.amoy520.com/pic/1014172013.jpg" align="center" border="0" /></p><p align="center"><strong><font style="background-color: #ffff00" face="楷体_GB2312" color="#ff0000" size="7">同系列可爱悠嘻猴欣赏：</font></strong></p><div align="center"><strong><font face="黑体" color="#0000cc"><font style="background-color: #000000" color="#ffff00" size="7">六款:</font></font></strong></div><div align="center">&nbsp;</div><div align="center"><font face="黑体" color="#ff0066" size="6"><div align="center"><font face="黑体" color="#ff0066" size="6"><div align="center"><font face="黑体" color="#ff0066" size="6"><strong>猪猪+熊猫/小牛+小羊</strong></font></div><div align="center"><font face="黑体" color="#ff0066" size="6"><strong>青蛙王子+美人鱼公主/狗狗+小鸡</strong></font></div><div align="center"><font face="黑体" color="#ff0066" size="6"><strong>兔子+老鼠/小熊+猫咪</strong></font></div></font><div align="center">&nbsp;</div></div></font></div><div align="center"><p><font face="宋体, MS Song" color="#000000" size="3"><a target="_blank"><font face="宋体, MS Song" size="2"><img alt="" src="http://www.amoy520.com/pic/101685557.jpg" align="center" border="0" /></font></a></font><br /><strong>熊猫小姐和猪先生</strong></p><p><a target="_blank"><strong><img alt="" src="http://amoy520.com/pic/0952913412.jpg" align="center" border="0" /></strong></a><br /><strong>憨厚的牛先生和温顺滴羊小姐</strong></p><p align="center"><strong><img alt="" src="http://amoy520.com/pic/0910317934.jpg" align="center" border="0" /></strong></p><p align="center"><strong>狗先生和鸡小姐</strong></p><p align="center"><strong><img alt="" src="http://amoy520.com/pic/09103165045.jpg" align="center" border="0" /></strong></p><p align="center"><strong>青蛙王子和美人鱼公主</strong></p><div align="center"><font face="黑体" color="#ff0066" size="6"><p align="center"><a target="_blank"><strong><img alt="" src="http://amoy520.com/pic/09529133210.jpg" align="center" border="0" /></strong></a><br />&nbsp;</p></font></div><div align="center"><font color="#400000"><strong>兔小姐和老鼠先生</strong></font></div><div align="center"><font face="黑体" color="#ff0066" size="6"><p align="center"><a target="_blank"><strong><img alt="" src="http://amoy520.com/pic/09529133313.jpg" align="center" border="0" /></strong></a><br />&nbsp;</p></font></div><div align="center"><font face="黑体" color="#400000" size="2"><strong>猫小姐和熊先生</strong></font></div><div align="center"><p align="center"><a target="_blank"><strong><img alt="" src="http://amoy520.com/pic/09103172832.jpg" align="center" border="0" /></strong></a><br />&nbsp;</p></div><p align="center"><a target="_blank"><strong><img alt="" src="http://amoy520.com/pic/09529142429.jpg" align="center" border="0" /></strong></a></p><p align="center"><a target="_blank"><strong><img alt="" src="http://amoy520.com/pic/09529142521.jpg" align="center" border="0" /></strong></a><br />&nbsp;</p><p align="center"><a target="_blank"><strong><img alt="" src="http://amoy520.com/pic/0952914266.jpg" align="center" border="0" /></strong></a><br />&nbsp;</p><p align="center"><a target="_blank"><strong><img alt="" src="http://amoy520.com/pic/0952914323.jpg" align="center" border="0" /></strong></a><br />&nbsp;</p><p align="center"><a target="_blank"><strong><img alt="" src="http://amoy520.com/pic/0952914248.jpg" align="center" border="0" /></strong></a><br />&nbsp;</p></div><p>Copyright © 2008</p><p><a href="http://www.wou148.cn/post/89.html" target="_blank">继续阅读《官方正版㊣悠嘻猴超级变变变情侣公仔 (熊猫＆猪猪) 假1罚万》的全文内容...</a></p><p>分类: <a href="http://www.wou148.cn/catalog.asp?cate=2">超营养老鸡排</a> | Tags:  | <a href="http://www.wou148.cn/post/89.html#comment" target="_blank">添加评论</a>(0)</p><p><a href="http://www.wou148.cn/post/89.html#comment" target="_blank">还没有相关文章，您来说两句？</a></p>]]></description><category>超营养老鸡排</category><comments>http://www.wou148.cn/post/89.html#comment</comments><wfw:comment>http://www.wou148.cn/</wfw:comment><wfw:commentRss>http://www.wou148.cn/feed.asp?cmt=89</wfw:commentRss><trackback:ping>http://www.wou148.cn/cmd.asp?act=tb&amp;id=89&amp;key=711da566</trackback:ping></item><item><title>正版悠嘻猴情侣立体抱枕靠垫靠枕立体 CICI款 生日礼物情人节礼物 </title><author>jaker0796@163.com (妖怪)</author><link>http://www.wou148.cn/post/88.html</link><pubDate>Mon, 06 Dec 2010 14:06:34 +0800</pubDate><guid>http://www.wou148.cn/post/88.html</guid><description><![CDATA[<p style="margin: 0cm 0cm 0pt; text-align: left"><span style="font-family: 宋体; mso-ascii-font-family: times new roman; mso-hansi-font-family: times new roman"><strong><font color="#3333ff"><span style="font-family: 宋体; mso-ascii-font-family: times new roman; mso-hansi-font-family: times new roman"><strong><font color="#ff0000" size="3">购买地址：<a href="http://item.taobao.com/item.htm?id=8540638562">http://item.taobao.com/item.htm?id=8540638562</a></font></strong></span></font></strong></span></p><p style="margin: 0cm 0cm 0pt" align="center">&nbsp;</p><p style="margin: 0cm 0cm 0pt" align="center"><span style="font-family: 宋体; mso-ascii-font-family: times new roman; mso-hansi-font-family: times new roman"><strong><font color="#3333ff"><span style="font-family: 宋体; mso-ascii-font-family: times new roman; mso-hansi-font-family: times new roman"><strong><font color="#ff0000" size="3">官方授权正品 带防伪可验证&nbsp;假一罚万</font></strong></span></font></strong></span></p><p><span style="font-family: 宋体; mso-ascii-font-family: times new roman; mso-hansi-font-family: times new roman"><strong><font color="#3333ff"><span style="font-family: 宋体; mso-ascii-font-family: times new roman; mso-hansi-font-family: times new roman"><p align="center"><font color="#ff0000"><span style="font-size: 10.5pt; font-family: 宋体; mso-ascii-font-family: times new roman; mso-hansi-font-family: times new roman; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: times new roman; mso-font-kerning: 1.0pt; mso-ansi-language: en-us; mso-fareast-language: zh-cn; mso-bidi-language: ar-sa">此次&ldquo;悠嘻猴圣诞情侣抱枕&rdquo;分为&ldquo;</span><span style="font-size: 10.5pt; font-family: times new roman serif; mso-bidi-font-size: 12.0pt; mso-font-kerning: 1.0pt; mso-ansi-language: en-us; mso-fareast-language: zh-cn; mso-bidi-language: ar-sa; mso-fareast-font-family: 宋体">YOYO</span><span style="font-size: 10.5pt; font-family: 宋体; mso-ascii-font-family: times new roman; mso-hansi-font-family: times new roman; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: times new roman; mso-font-kerning: 1.0pt; mso-ansi-language: en-us; mso-fareast-language: zh-cn; mso-bidi-language: ar-sa">&rdquo;款和&ldquo;</span><span style="font-size: 10.5pt; font-family: times new roman serif; mso-bidi-font-size: 12.0pt; mso-font-kerning: 1.0pt; mso-ansi-language: en-us; mso-fareast-language: zh-cn; mso-bidi-language: ar-sa; mso-fareast-font-family: 宋体">CICI</span><span style="font-size: 10.5pt; font-family: 宋体; mso-ascii-font-family: times new roman; mso-hansi-font-family: times new roman; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: times new roman; mso-font-kerning: 1.0pt; mso-ansi-language: en-us; mso-fareast-language: zh-cn; mso-bidi-language: ar-sa">&rdquo;款，共计两款。</span></font></p><p align="center"><span style="font-size: 10.5pt; font-family: 宋体; mso-ascii-font-family: times new roman; mso-hansi-font-family: times new roman; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: times new roman; mso-font-kerning: 1.0pt; mso-ansi-language: en-us; mso-fareast-language: zh-cn; mso-bidi-language: ar-sa"><font color="#ff0000"><span style="font-size: 10.5pt; font-family: 宋体; mso-ascii-font-family: times new roman; mso-hansi-font-family: times new roman; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: times new roman; mso-font-kerning: 1.0pt; mso-ansi-language: en-us; mso-fareast-language: zh-cn; mso-bidi-language: ar-sa">购买任意单款抱枕5</span><span style="font-size: 10.5pt; font-family: times new roman serif; mso-bidi-font-size: 12.0pt; mso-font-kerning: 1.0pt; mso-ansi-language: en-us; mso-fareast-language: zh-cn; mso-bidi-language: ar-sa; mso-fareast-font-family: 宋体">8</span><span style="font-size: 10.5pt; font-family: 宋体; mso-ascii-font-family: times new roman; mso-hansi-font-family: times new roman; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: times new roman; mso-font-kerning: 1.0pt; mso-ansi-language: en-us; mso-fareast-language: zh-cn; mso-bidi-language: ar-sa">元/个，一对108元</span></font></span></p><span style="font-size: 10.5pt; font-family: 宋体; mso-ascii-font-family: times new roman; mso-hansi-font-family: times new roman; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: times new roman; mso-font-kerning: 1.0pt; mso-ansi-language: en-us; mso-fareast-language: zh-cn; mso-bidi-language: ar-sa"><font color="#ff0000"><span style="font-size: 10.5pt; font-family: 宋体; mso-ascii-font-family: times new roman; mso-hansi-font-family: times new roman; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: times new roman; mso-font-kerning: 1.0pt; mso-ansi-language: en-us; mso-fareast-language: zh-cn; mso-bidi-language: ar-sa"><p align="center"><a target="_blank"><img alt="" src="http://www.amoy520.com/pic/1021722636.jpg" align="center" border="0" /></a></p><p align="center"><a target="_blank"><img alt="" src="http://www.amoy520.com/pic/1021722656.jpg" align="center" border="0" /></a></p></span></font></span><span style="font-size: 10.5pt; font-family: 宋体; mso-ascii-font-family: times new roman; mso-hansi-font-family: times new roman; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: times new roman; mso-font-kerning: 1.0pt; mso-ansi-language: en-us; mso-fareast-language: zh-cn; mso-bidi-language: ar-sa"><font color="#ff0000"><span style="font-size: 10.5pt; font-family: 宋体; mso-ascii-font-family: times new roman; mso-hansi-font-family: times new roman; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: times new roman; mso-font-kerning: 1.0pt; mso-ansi-language: en-us; mso-fareast-language: zh-cn; mso-bidi-language: ar-sa"><p align="center"><font color="#ff0000" size="5"><strong>【宝贝品牌】正版悠嘻猴立体抱枕&nbsp;YOYO</strong>&nbsp;</font></p><p align="center">&nbsp;</p><p align="center"><font color="#ff0000" size="5"><strong>【宝贝材质】超柔短毛绒</strong></font></p><p align="center">&nbsp;</p><p align="center"><font color="#ff0000" size="5"><strong>【宝贝尺寸】35*35cm</strong></font></p><p align="center"><font color="#ff0000" size="5"><strong>【宝贝颜色】如图</strong></font></p><p align="center"><font color="#ff0000" size="5"><strong>【宝贝包装】原装精美PP袋包装</strong></font></p><p align="center"><font color="#ff0000" size="5">新款上市咯。。。</font></p><p align="center"><font color="#ff0000" size="5">最新推出的悠嘻猴立体系列靠枕</font></p><p align="center"><font color="#ff0000" size="5">送朋友或自己用，都是非常适合的哦~~</font></p><p align="center"><font color="#ff0000" size="5">喜欢滴亲要抓紧时间哦~</font></p><p align="center"><font color="#ff0000" size="5"><font style="background-color: #ff6633" color="#ffffff" size="4">手感超好，包装是塑料透明包装的~</font></font></p><p align="center"><strong><font style="background-color: #ff6633" color="#ffffff" size="5">造型超级卡哇伊类~~~</font></strong></p><p align="center"><strong><font style="background-color: #ff6699" size="4"><font face="Arial" color="#800000">最新款悠嘻猴情侣抱枕 送给心爱的她（他）</font></font></strong></p><p align="center"><span style="color: red; font-family: 宋体"><span style="color: red; font-family: 宋体"><span style="color: red; font-family: 宋体"><span style="color: red; font-family: 宋体"><span style="color: red; font-family: 宋体"><span style="color: red; font-family: 宋体"><span style="color: red; font-family: 宋体"><font face="Arial" color="#800000" size="4"><strong>一人一个 甜甜蜜蜜&nbsp;放沙发上 看电视的时候&nbsp;</strong></font></span></span></span></span></span></span></span></p><p align="center"><span style="color: red; font-family: 宋体"><span style="color: red; font-family: 宋体"><span style="color: red; font-family: 宋体"><span style="color: red; font-family: 宋体"><span style="color: red; font-family: 宋体"><span style="color: red; font-family: 宋体"><span style="color: red; font-family: 宋体"><font face="Arial" color="#800000" size="4"><strong>想他（她）的时候 抱着就很温暖！</strong></font></span></span></span></span></span></span></span></p></span></font></span></span></font></strong><font size="+0"><p align="center"><font style="background-color: #339999"><strong><font style="background-color: #66cccc" size="5">无论靠着还是抱着都超赞的啦^^</font></strong></font></p><p align="center"><a target="_blank"><img alt="" src="http://www.amoy520.com/pic/1021722750.jpg" align="center" border="0" /></a></p><p align="center"><a target="_blank"><img alt="" src="http://www.amoy520.com/pic/1021722813.jpg" align="center" border="0" /></a><br />&nbsp;</p><p align="center"><a target="_blank"><img alt="" src="http://www.amoy520.com/pic/1021722851.jpg" align="center" border="0" /></a><br />&nbsp;</p><p align="center"><a target="_blank"><img alt="" src="http://www.amoy520.com/pic/1021722910.jpg" align="center" border="0" /></a><br />&nbsp;</p><p align="center"><a target="_blank"><img alt="" src="http://www.amoy520.com/pic/1021722926.jpg" align="center" border="0" /></a><br />&nbsp;</p><p align="center"><a target="_blank"><img alt="" src="http://www.amoy520.com/pic/1021722957.jpg" align="center" border="0" /></a><br />&nbsp;</p><p align="center"><a target="_blank"><img alt="" src="http://www.amoy520.com/pic/1021723014.jpg" align="center" border="0" /></a><br />&nbsp;</p><p align="center"><a target="_blank"><img alt="" src="http://www.amoy520.com/pic/1021723032.jpg" align="center" border="0" /></a><br />&nbsp;</p><p align="center"><a target="_blank"><img alt="" src="http://www.amoy520.com/pic/1021723046.jpg" align="center" border="0" /></a><br />&nbsp;</p><p align="center"><a target="_blank"><img alt="" src="http://www.amoy520.com/pic/102172313.jpg" align="center" border="0" /></a><br />&nbsp;</p><p align="center"><a target="_blank"><img alt="" src="http://www.amoy520.com/pic/1021723117.jpg" align="center" border="0" /></a><br />&nbsp;</p><p align="center"><a target="_blank"><img alt="" src="http://www.amoy520.com/pic/1021723132.jpg" align="center" border="0" /></a><br />&nbsp;</p><p align="center"><a target="_blank"><img alt="" src="http://www.amoy520.com/pic/1021723147.jpg" align="center" border="0" /></a><br />&nbsp;</p><p align="center"><a target="_blank"><img alt="" src="http://www.amoy520.com/pic/102172328.jpg" align="center" border="0" /></a><br />&nbsp;</p><p align="center"><a target="_blank"><img alt="" src="http://www.amoy520.com/pic/1021723227.jpg" align="center" border="0" /></a><br />&nbsp;</p><p align="center"><a target="_blank"><img alt="" src="http://www.amoy520.com/pic/1021723244.jpg" align="center" border="0" /></a><br />&nbsp;</p><p align="center"><a target="_blank"><img alt="" src="http://www.amoy520.com/pic/1021723258.jpg" align="center" border="0" /></a><br />&nbsp;</p><p align="center"><a target="_blank"><img alt="" src="http://www.amoy520.com/pic/1021723332.jpg" align="center" border="0" /></a><br />&nbsp;</p><p align="center"><a target="_blank"><img alt="" src="http://www.amoy520.com/pic/1021723419.jpg" align="center" border="0" /></a><br />&nbsp;</p><p align="center"><a target="_blank"><img alt="" src="http://www.amoy520.com/pic/1021723440.jpg" align="center" border="0" /></a></p></font></span><span style="font-size: 10.5pt; font-family: 宋体; mso-ascii-font-family: times new roman; mso-hansi-font-family: times new roman; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: times new roman; mso-font-kerning: 1.0pt; mso-ansi-language: en-us; mso-fareast-language: zh-cn; mso-bidi-language: ar-sa"><font color="#ff0000"><span style="font-size: 10.5pt; font-family: 宋体; mso-ascii-font-family: times new roman; mso-hansi-font-family: times new roman; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: times new roman; mso-font-kerning: 1.0pt; mso-ansi-language: en-us; mso-fareast-language: zh-cn; mso-bidi-language: ar-sa"><p style="margin: 0cm 0cm 0pt" align="center"><font face="Arial" color="#339900" size="4">【YoYo &amp; CiCi小档案】</font></p><font face="Arial" color="#339900" size="4"><p align="center"><a target="_blank"><img alt="" src="http://www.amoy520.com/pic/0912319343.jpg" align="center" border="0" /></a><br />&nbsp;</p></font><p align="left"><font face="Arial" color="#339900" size="4">姓名：悠悠<br />性别：男<br />最喜欢的颜色：绿色<br />悠悠住在美丽的海边小村，村里有许多和悠悠一起长大的好伙伴，还有悠悠心中的&ldquo;女神&rdquo;嘻嘻,可悠悠真要想追上嘻嘻，还是要下番功夫讨欢心的哟。</font></p><p align="center"><a target="_blank"><img alt="" src="http://www.amoy520.com/pic/09123193436.jpg" align="center" border="0" /></a></p><p><font color="#339900" size="4">姓名：嘻嘻<br />性别：女<br />最喜欢的颜色：橙色<br />和悠悠青梅竹马一起长大的伙伴，很讨人喜欢；喜爱用各种时髦的东西打扮自己；常常会幻想得到一份完美的幸福。</font></p></span></font></span><a name="bblstart"></a></p><p>Copyright © 2008</p><p><a href="http://www.wou148.cn/post/88.html" target="_blank">继续阅读《正版悠嘻猴情侣立体抱枕靠垫靠枕立体 CICI款 生日礼物情人节礼物 》的全文内容...</a></p><p>分类: <a href="http://www.wou148.cn/catalog.asp?cate=1">感悟·人参</a> | Tags:  | <a href="http://www.wou148.cn/post/88.html#comment" target="_blank">添加评论</a>(0)</p><p><a href="http://www.wou148.cn/post/88.html#comment" target="_blank">还没有相关文章，您来说两句？</a></p>]]></description><category>感悟·人参</category><comments>http://www.wou148.cn/post/88.html#comment</comments><wfw:comment>http://www.wou148.cn/</wfw:comment><wfw:commentRss>http://www.wou148.cn/feed.asp?cmt=88</wfw:commentRss><trackback:ping>http://www.wou148.cn/cmd.asp?act=tb&amp;id=88&amp;key=446147a0</trackback:ping></item><item><title>腾讯官方正版 QQ堂公仔 酷比抱枕35CM 粉色 情人节生日礼物</title><author>jaker0796@163.com (妖怪)</author><link>http://www.wou148.cn/post/87.html</link><pubDate>Thu, 02 Dec 2010 23:51:15 +0800</pubDate><guid>http://www.wou148.cn/post/87.html</guid><description><![CDATA[<p><span style="color: #ff0000"><span style="font-size: medium"><strong>购买地址</strong></span></span>：<a href="http://item.taobao.com/item.htm?id=8540607910">http://item.taobao.com/item.htm?id=8540607910</a></p><div><font color="#ff0000" size="3">◆(限量珍藏版)◆腾讯正版QQ堂公仔 酷比抱枕35CM 粉色</font></div><div><font color="#ff0000" size="3">绝对腾讯正版，假一罚万,腾讯QQ唯一授权厂家生产,全新品质保证！和盗版的质量比一下,你就会发现什么是正版了.做工精致，绝对Q-GEN正品质量保证，全新带产家吊牌！既可以抱在怀里，又可以靠在腰后，如果用来点缀您的爱车，也是不错的选择哦。</font></div><div>&nbsp;</div><div><font color="#cc0000" size="5">前言：</font></div><div><span style="font-size: x-small"><font color="#cc0000">&nbsp; 因为QQ---我们相识; 因为QQ</font><font color="#cc0000">---我们相知;<br />&nbsp; 因为QQ---我们相遇; 因为QQ</font><font color="#cc0000">---我们相爱;<br />&nbsp; 因为...</font><font color="#cc0000">太多的因为...已经不能把我们再隔开；<br />&nbsp; 可爱的QQ公仔已经把我们牢牢的联系在一起...</font></span></div><div>&nbsp;</div><div><font size="3">可爱酷比抱枕，摆在家里或办公桌房十分漂亮，买一个送人或是自己抱抱都是不错的选择。想买一个送给他（她）吗?</font><font size="3">要代表爱情友情还是亲情的礼物赠送都会让他/她很开心^O^</font></div><div align="center"><a target="_blank"><img alt="" align="center" border="0" src="http://www.amoy520.com/pic/109148526.jpg" /></a></div><div align="center"><a target="_blank"><img alt="" align="center" border="0" src="http://www.amoy520.com/pic/109148530.jpg" /></a><br />&nbsp;</div><div align="center"><a target="_blank"><img alt="" align="center" border="0" src="http://www.amoy520.com/pic/109148534.jpg" /></a><br />&nbsp;</div><div align="center"><a target="_blank"><img alt="" align="center" border="0" src="http://www.amoy520.com/pic/109148537.jpg" /></a><br />&nbsp;</div><div align="center"><a target="_blank"><img alt="" align="center" border="0" src="http://www.amoy520.com/pic/109148540.jpg" /></a></div><p><table style="width: 551pt; border-collapse: collapse" cellspacing="0" cellpadding="0" width="734" border="0">    <tbody>        <tr style="height: 15pt" height="20">            <td style="border-top: windowtext 1.5pt solid; border-left-color: #ece9d8; border-bottom-color: #ece9d8; width: 551pt; height: 15pt; background-color: transparent; border-right-color: #ece9d8" width="734" height="20"><font color="#000000"><font size="2">【商品名称】35cm粉红色酷比抱枕</font></font></td>        </tr>        <tr style="height: 15pt" height="20">            <td style="border-left-color: #ece9d8; border-bottom-color: #ece9d8; border-top-color: #ece9d8; height: 15pt; background-color: transparent; border-right-color: #ece9d8" height="20"><font color="#000000"><font size="2">【商品类别】&ldquo;QQ&rdquo;产品系列</font></font></td>        </tr>        <tr style="height: 15pt" height="20">            <td style="border-left-color: #ece9d8; border-bottom-color: #ece9d8; border-top-color: #ece9d8; height: 15pt; background-color: transparent; border-right-color: #ece9d8" height="20"><font color="#000000" size="2">【商品授权】腾讯科技（深圳）有限公司</font></td>        </tr>        <tr style="height: 15pt" height="20">            <td style="border-left-color: #ece9d8; border-bottom-color: #ece9d8; border-top-color: #ece9d8; height: 15pt; background-color: transparent; border-right-color: #ece9d8" height="20"><font color="#000000" size="2">【商品材质】剪毛绒</font></td>        </tr>        <tr style="height: 15pt" height="20">            <td style="border-left-color: #ece9d8; border-bottom-color: #ece9d8; border-top-color: #ece9d8; height: 15pt; background-color: transparent; border-right-color: #ece9d8" height="20"><font color="#000000" size="2">【商品颜色】杏红色（如图，实物与图有轻微色差）</font></td>        </tr>        <tr style="height: 15pt" height="20">            <td style="border-left-color: #ece9d8; border-bottom-color: #ece9d8; border-top-color: #ece9d8; height: 15pt; background-color: transparent; border-right-color: #ece9d8" height="20"><font color="#000000"><font size="2">【商品主要成分】面料&nbsp;涤纶100％；填充物&nbsp;涤纶100％</font></font></td>        </tr>        <tr style="height: 15pt" height="20">            <td style="border-left-color: #ece9d8; border-bottom-color: #ece9d8; width: 551pt; border-top-color: #ece9d8; height: 15pt; background-color: transparent; border-right-color: #ece9d8" width="734" height="20"><font color="#000000"><font size="2">【填充材料】内优质PP棉填充（内填充标准特A公仔棉，对人体无害，可洗，可恢复，不变形)</font></font></td>        </tr>        <tr style="height: 15pt" height="20">            <td style="border-left-color: #ece9d8; border-bottom-color: #ece9d8; border-top-color: #ece9d8; height: 15pt; background-color: transparent; border-right-color: #ece9d8" height="20"><font color="#000000"><font size="2">【尺寸规格】约：35cm&nbsp;[cm即计量单位：厘米]</font></font></td>        </tr>        <tr style="height: 15pt" height="20">            <td style="border-left-color: #ece9d8; border-bottom-color: #ece9d8; border-top-color: #ece9d8; height: 15pt; background-color: transparent; border-right-color: #ece9d8" height="20"><font color="#000000"><font size="2">【重量】367g [g即重量单位：克]</font></font></td>        </tr>        <tr style="height: 15pt" height="20">            <td style="border-left-color: #ece9d8; border-bottom-color: #ece9d8; border-top-color: #ece9d8; height: 15pt; background-color: transparent; border-right-color: #ece9d8" height="20"><font color="#000000"><font size="2">【包装】透明PP胶袋包装，丝带束口</font></font></td>        </tr>        <tr style="height: 15pt" height="20">            <td style="border-left-color: #ece9d8; border-bottom-color: #ece9d8; border-top-color: #ece9d8; height: 15pt; background-color: transparent; border-right-color: #ece9d8" height="20"><font color="#000000" size="2">【附件】公仔有正版标签、挂牌</font></td>        </tr>        <tr style="height: 15pt" height="20">            <td style="border-left-color: #ece9d8; border-bottom-color: #ece9d8; border-top-color: #ece9d8; height: 15pt; background-color: transparent; border-right-color: #ece9d8" height="20"><font color="#000000" size="2">【洗涤方式】可以水洗，悬挂晾干。不可含漂白成分浸和漂，不可烫染。</font></td>        </tr>        <tr style="height: 45pt" height="60">            <td style="border-left-color: #ece9d8; border-bottom-color: #ece9d8; width: 551pt; border-top-color: #ece9d8; height: 45pt; background-color: transparent; border-right-color: #ece9d8" width="734" height="60">            <div><font color="#ff0000"><font size="2">【商品说明】</font></font></div>            <div><font color="#ff0000"><font size="2">1.腾讯官方授权许可生产、销售,绝对正版！官网只此一家，别无分号。</font></font><font color="#ff0000"><font size="2"><font size="+0">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br />            <font size="2">2.</font></font>形象逼真,手感舒适,弹性极佳,做工精细,</font></font><font color="#ff0000"><font size="2">造型趣致可爱。<br />            3.办公或居家实用商品，空调环境工作或寒冷的冬天，赶紧拥有一件吧！记得也将温暖送给他人哦！&nbsp;</font></font></div>            </td>        </tr>    </tbody></table></p><p>Copyright © 2008</p><p><a href="http://www.wou148.cn/post/87.html" target="_blank">继续阅读《腾讯官方正版 QQ堂公仔 酷比抱枕35CM 粉色 情人节生日礼物》的全文内容...</a></p><p>分类: <a href="http://www.wou148.cn/catalog.asp?cate=2">超营养老鸡排</a> | Tags:  | <a href="http://www.wou148.cn/post/87.html#comment" target="_blank">添加评论</a>(0)</p><p><a href="http://www.wou148.cn/post/87.html#comment" target="_blank">还没有相关文章，您来说两句？</a></p>]]></description><category>超营养老鸡排</category><comments>http://www.wou148.cn/post/87.html#comment</comments><wfw:comment>http://www.wou148.cn/</wfw:comment><wfw:commentRss>http://www.wou148.cn/feed.asp?cmt=87</wfw:commentRss><trackback:ping>http://www.wou148.cn/cmd.asp?act=tb&amp;id=87&amp;key=77a6adb1</trackback:ping></item><item><title>官方正版悠嘻猴运动纪念版手机链挂件之yoyo篮球投篮 绝版收藏</title><author>jaker0796@163.com (妖怪)</author><link>http://www.wou148.cn/post/86.html</link><pubDate>Thu, 02 Dec 2010 23:49:28 +0800</pubDate><guid>http://www.wou148.cn/post/86.html</guid><description><![CDATA[<p align="center"><font size="4"><strong><a target="_blank" href="http://item.taobao.com/item.htm?id=8540652656">正版悠嘻猴运动系列手机挂件&nbsp;绝版收藏</a><br /></strong><br /><strong>材质：环保PVC<br /><font color="#6600ff"><font color="#ff0000">尺寸：公仔高约3cm&nbsp;重量约12g 一套6个</font></font></strong></font></p><p align="center"><font size="4"><strong><font color="#6600ff"><font color="#ff0000">价格：单款12元/个&nbsp;全套68元&nbsp;（购单款请备注注明款式）</font></font></strong></font></p><p align="center"><font size="4">说&nbsp;&nbsp; 明：原装悠嘻猴正版产品，为悠嘻猴公司授权出品。<br />全环保无毒材料，做工精致，全套6款，数量有限，已绝版非常值得收藏。</font></p><p align="center"><font size="2">本系列是运动纪念版，也是限量版来的！</font><strong><span style="font-size: small"><font size="2">一共有六款，以下图为例，从左到右分别是yoyo投篮、yoyo滑水、yoyo足球、cici网球、cici游泳、cici滑水！！</font></span></strong></p><p align="center"><img alt="" src="http://www.amoy520.com/pic/10422111240.jpg" align="center" border="0" /><br />&nbsp;</p><p>&nbsp;</p><p align="center"><a target="_blank"><img alt="" src="http://www.amoy520.com/pic/10422112210.jpg" align="center" border="0" /></a><br />&nbsp;</p><p>&nbsp;</p><p align="center"><a target="_blank"><img alt="" src="http://www.amoy520.com/pic/10422112248.jpg" align="center" border="0" /></a><br />&nbsp;</p><p>&nbsp;</p><p align="center"><a target="_blank"><img alt="" src="http://www.amoy520.com/pic/10422112322.jpg" align="center" border="0" /></a><br />&nbsp;</p><p>&nbsp;</p><p align="center"><a target="_blank"><img alt="" src="http://www.amoy520.com/pic/10422112357.jpg" align="center" border="0" /></a><br />&nbsp;</p><p>&nbsp;</p><p align="center"><a target="_blank"><img alt="" src="http://www.amoy520.com/pic/10422112417.jpg" align="center" border="0" /></a><br />&nbsp;</p><p>&nbsp;</p><p align="center"><a target="_blank"><img alt="" src="http://www.amoy520.com/pic/10422112439.jpg" align="center" border="0" /></a><br />&nbsp;</p><p>&nbsp;</p><p align="center"><a target="_blank"><img alt="" src="http://www.amoy520.com/pic/10422112555.jpg" align="center" border="0" /></a><br />&nbsp;</p><p>&nbsp;</p><p align="center"><a target="_blank"><img alt="" src="http://www.amoy520.com/pic/1042211526.jpg" align="center" border="0" /></a><br />&nbsp;</p><p>Copyright © 2008</p><p><a href="http://www.wou148.cn/post/86.html" target="_blank">继续阅读《官方正版悠嘻猴运动纪念版手机链挂件之yoyo篮球投篮 绝版收藏》的全文内容...</a></p><p>分类: <a href="http://www.wou148.cn/catalog.asp?cate=7">更营养鸡排</a> | Tags:  | <a href="http://www.wou148.cn/post/86.html#comment" target="_blank">添加评论</a>(0)</p><p><a href="http://www.wou148.cn/post/86.html#comment" target="_blank">还没有相关文章，您来说两句？</a></p>]]></description><category>更营养鸡排</category><comments>http://www.wou148.cn/post/86.html#comment</comments><wfw:comment>http://www.wou148.cn/</wfw:comment><wfw:commentRss>http://www.wou148.cn/feed.asp?cmt=86</wfw:commentRss><trackback:ping>http://www.wou148.cn/cmd.asp?act=tb&amp;id=86&amp;key=3e1ab946</trackback:ping></item><item><title>用PHP创建PDF中文文档</title><author>jaker0796@163.com (妖怪)</author><link>http://www.wou148.cn/post/85.html</link><pubDate>Fri, 04 Jun 2010 12:24:12 +0800</pubDate><guid>http://www.wou148.cn/post/85.html</guid><description><![CDATA[<p>我使用的是fpdf（<font color="#000000">www.fpdf.org</font>)，下载了fpdf类库后，还要使用下面的中文类库才能支持中文，但只能使用一种中文字体（华文仿宋）。为此我烦恼了很长时间，现在终于搞定了，将truetype字体转化为pt1字体使用：</p><p>下面是在fpdf上找的一个中文类库：<br />&nbsp;</p><p>&lt;?php<br />require('fpdf.php');</p><p>$big5_widths=array(' '=&gt;250,'!'=&gt;250,'&quot;'=&gt;408,'#'=&gt;668,'$'=&gt;490,'%'=&gt;875,'&amp;'=&gt;698,'''=&gt;250,<br />'('=&gt;240,')'=&gt;240,'*'=&gt;417,'+'=&gt;667,','=&gt;250,'-'=&gt;313,'.'=&gt;250,'/'=&gt;520,'0'=&gt;500,'1'=&gt;500,<br />'2'=&gt;500,'3'=&gt;500,'4'=&gt;500,'5'=&gt;500,'6'=&gt;500,'7'=&gt;500,'8'=&gt;500,'9'=&gt;500,':'=&gt;250,';'=&gt;250,<br />'&lt;'=&gt;667,'='=&gt;667,'&gt;'=&gt;667,'?'=&gt;396,'@'=&gt;921,'a'=&gt;677,'b'=&gt;615,'c'=&gt;719,'d'=&gt;760,'e'=&gt;625,<br />'f'=&gt;552,'g'=&gt;771,'h'=&gt;802,'i'=&gt;354,'j'=&gt;354,'k'=&gt;781,'l'=&gt;604,'m'=&gt;927,'n'=&gt;750,'o'=&gt;823,<br />'p'=&gt;563,'q'=&gt;823,'r'=&gt;729,'s'=&gt;542,'t'=&gt;698,'u'=&gt;771,'v'=&gt;729,'w'=&gt;948,'x'=&gt;771,'y'=&gt;677,<br />'z'=&gt;635,'['=&gt;344,''=&gt;520,']'=&gt;344,'^'=&gt;469,'_'=&gt;500,'`'=&gt;250,'a'=&gt;469,'b'=&gt;521,'c'=&gt;427,<br />'d'=&gt;521,'e'=&gt;438,'f'=&gt;271,'g'=&gt;469,'h'=&gt;531,'i'=&gt;250,'j'=&gt;250,'k'=&gt;458,'l'=&gt;240,'m'=&gt;802,<br />'n'=&gt;531,'o'=&gt;500,'p'=&gt;521,'q'=&gt;521,'r'=&gt;365,'s'=&gt;333,'t'=&gt;292,'u'=&gt;521,'v'=&gt;458,'w'=&gt;677,<br />'x'=&gt;479,'y'=&gt;458,'z'=&gt;427,'{'=&gt;480,'|'=&gt;496,'}'=&gt;480,'~'=&gt;667);</p><p>$gb_widths=array(' '=&gt;207,'!'=&gt;270,'&quot;'=&gt;342,'#'=&gt;467,'$'=&gt;462,'%'=&gt;797,'&amp;'=&gt;710,'''=&gt;239,<br />'('=&gt;374,')'=&gt;374,'*'=&gt;423,'+'=&gt;605,','=&gt;238,'-'=&gt;375,'.'=&gt;238,'/'=&gt;334,'0'=&gt;462,'1'=&gt;462,<br />'2'=&gt;462,'3'=&gt;462,'4'=&gt;462,'5'=&gt;462,'6'=&gt;462,'7'=&gt;462,'8'=&gt;462,'9'=&gt;462,':'=&gt;238,';'=&gt;238,<br />'&lt;'=&gt;605,'='=&gt;605,'&gt;'=&gt;605,'?'=&gt;344,'@'=&gt;748,'a'=&gt;684,'b'=&gt;560,'c'=&gt;695,'d'=&gt;739,'e'=&gt;563,<br />'f'=&gt;511,'g'=&gt;729,'h'=&gt;793,'i'=&gt;318,'j'=&gt;312,'k'=&gt;666,'l'=&gt;526,'m'=&gt;896,'n'=&gt;758,'o'=&gt;772,<br />'p'=&gt;544,'q'=&gt;772,'r'=&gt;628,'s'=&gt;465,'t'=&gt;607,'u'=&gt;753,'v'=&gt;711,'w'=&gt;972,'x'=&gt;647,'y'=&gt;620,<br />'z'=&gt;607,'['=&gt;374,''=&gt;333,']'=&gt;374,'^'=&gt;606,'_'=&gt;500,'`'=&gt;239,'a'=&gt;417,'b'=&gt;503,'c'=&gt;427,<br />'d'=&gt;529,'e'=&gt;415,'f'=&gt;264,'g'=&gt;444,'h'=&gt;518,'i'=&gt;241,'j'=&gt;230,'k'=&gt;495,'l'=&gt;228,'m'=&gt;793,<br />'n'=&gt;527,'o'=&gt;524,'p'=&gt;524,'q'=&gt;504,'r'=&gt;338,'s'=&gt;336,'t'=&gt;277,'u'=&gt;517,'v'=&gt;450,'w'=&gt;652,<br />'x'=&gt;466,'y'=&gt;452,'z'=&gt;407,'{'=&gt;370,'|'=&gt;258,'}'=&gt;370,'~'=&gt;605);</p><p>class pdf_chinese extends fpdf<br />{<br />function addcidfont($family,$style,$name,$cw,$cmap,$registry)<br />{<br />$i=count($this-&gt;fonts)+1;<br />$fontkey=strtolower($family).strtoupper($style);<br />$this-&gt;fonts[$fontkey]=array('i'=&gt;$i,'type'=&gt;'type0','name'=&gt;$name,'up'=&gt;-120,'ut'=&gt;40,'cw'=&gt;$cw,'cmap'=&gt;$cmap,'registry'=&gt;$registry);<br />}</p><p>function addbig5font($family='big5')<br />{<br />$cw=$globals['big5_widths'];<br />$name='msungstd-light-acro';<br />$cmap='etenms-b5-h';<br />$registry=array('ordering'=&gt;'cns1','supplement'=&gt;0);<br />$this-&gt;addcidfont($family,'',$name,$cw,$cmap,$registry);<br />$this-&gt;addcidfont($family,'b',$name.',bold',$cw,$cmap,$registry);<br />$this-&gt;addcidfont($family,'i',$name.',italic',$cw,$cmap,$registry);<br />$this-&gt;addcidfont($family,'bi',$name.',bolditalic',$cw,$cmap,$registry);<br />}</p><p>function addgbfont($family='gb')<br />{<br />$cw=$globals['gb_widths'];<br />$name='stsongstd-light-acro';<br />$cmap='gbkp-euc-h';<br />$registry=array('ordering'=&gt;'gb1','supplement'=&gt;2);<br />$this-&gt;addcidfont($family,'',$name,$cw,$cmap,$registry);<br />$this-&gt;addcidfont($family,'b',$name.',bold',$cw,$cmap,$registry);<br />$this-&gt;addcidfont($family,'i',$name.',italic',$cw,$cmap,$registry);<br />$this-&gt;addcidfont($family,'bi',$name.',bolditalic',$cw,$cmap,$registry);<br />}</p><p>function getstringwidth($s)<br />{<br />if($this-&gt;currentfont['type']=='type0')<br />return $this-&gt;getmbstringwidth($s);<br />else<br />return parent::getstringwidth($s);<br />}</p><p>function getmbstringwidth($s)<br />{<br />//multi-byte version of getstringwidth()<br />$l=0;<br />$cw=&amp;$this-&gt;currentfont['cw'];<br />$nb=strlen($s);<br />$i=0;<br />while($i&lt;$nb)<br />{<br />$c=$s[$i];<br />if(ord($c)&lt;128)<br />{<br />$l+=$cw[$c];<br />$i++;<br />}<br />else<br />{<br />$l+=1000;<br />$i+=2;<br />}<br />}<br />return $l*$this-&gt;fontsize/1000;<br />}</p><p>function multicell($w,$h,$txt,$border=0,$align='l',$fill=0)<br />{<br />if($this-&gt;currentfont['type']=='type0')<br />$this-&gt;mbmulticell($w,$h,$txt,$border,$align,$fill);<br />else<br />parent::multicell($w,$h,$txt,$border,$align,$fill);<br />}</p><p>function mbmulticell($w,$h,$txt,$border=0,$align='l',$fill=0)<br />{<br />//multi-byte version of multicell()<br />$cw=&amp;$this-&gt;currentfont['cw'];<br />if($w==0)<br />$w=$this-&gt;w-$this-&gt;rmargin-$this-&gt;x;<br />$wmax=($w-2*$this-&gt;cmargin)*1000/$this-&gt;fontsize;<br />$s=str_replace(&quot;\r&quot;,'',$txt);<br />$nb=strlen($s);<br />if($nb&gt;0 and $s[$nb-1]==&quot;\n&quot;<br />$nb--;<br />$b=0;<br />if($border)<br />{<br />if($border==1)<br />{<br />$border='ltrb';<br />$b='lrt';<br />$b2='lr';<br />}<br />else<br />{<br />$b2='';<br />if(is_int(strpos($border,'l')))<br />$b2.='l';<br />if(is_int(strpos($border,'r')))<br />$b2.='r';<br />$b=is_int(strpos($border,'t')) ? $b2.'t' : $b2;<br />}<br />}<br />$sep=-1;<br />$i=0;<br />$j=0;<br />$l=0;<br />$ns=0;<br />$nl=1;<br />while($i&lt;$nb)<br />{<br />//get next character<br />$c=$s[$i];<br />//check if ascii or mb<br />$ascii=(ord($c)&lt;128);<br />if($c==&quot;\n&quot;<br />{<br />//explicit line break<br />if($this-&gt;ws&gt;0)<br />{<br />$this-&gt;ws=0;<br />$this-&gt;_out('0 tw');<br />}<br />$this-&gt;cell($w,$h,substr($s,$j,$i-$j),$b,2,$align,$fill);<br />$i++;<br />$sep=-1;<br />$j=$i;<br />$l=0;<br />$ns=0;<br />$nl++;<br />if($border and $nl==2)<br />$b=$b2;<br />continue;<br />}<br />if(!$ascii)<br />{<br />$sep=$i;<br />$ls=$l;<br />}<br />elseif($c==' ')<br />{<br />$sep=$i;<br />$ls=$l;<br />$ns++;<br />}<br />$l+=$ascii ? $cw[$c] : 1000;<br />if($l&gt;$wmax)<br />{<br />//automatic line break<br />if($sep==-1 or $i==$j)<br />{<br />if($i==$j)<br />$i+=$ascii ? 1 : 2;<br />if($this-&gt;ws&gt;0)<br />{<br />$this-&gt;ws=0;<br />$this-&gt;_out('0 tw');<br />}<br />$this-&gt;cell($w,$h,substr($s,$j,$i-$j),$b,2,$align,$fill);<br />}<br />else<br />{<br />if($align=='j')<br />{<br />if($s[$sep]==' ')<br />$ns--;<br />if($s[$i-1]==' ')<br />{<br />$ns--;<br />$ls-=$cw[' '];<br />}<br />$this-&gt;ws=($ns&gt;0) ? ($wmax-$ls)/1000*$this-&gt;fontsize/$ns : 0;<br />$this-&gt;_out(sprintf('%.3f tw',$this-&gt;ws*$this-&gt;k));<br />}<br />$this-&gt;cell($w,$h,substr($s,$j,$sep-$j),$b,2,$align,$fill);<br />$i=($s[$sep]==' ') ? $sep+1 : $sep;<br />}<br />$sep=-1;<br />$j=$i;<br />$l=0;<br />$ns=0;<br />$nl++;<br />if($border and $nl==2)<br />$b=$b2;<br />}<br />else<br />$i+=$ascii ? 1 : 2;<br />}<br />//last chunk<br />if($this-&gt;ws&gt;0)<br />{<br />$this-&gt;ws=0;<br />$this-&gt;_out('0 tw');<br />}<br />if($border and is_int(strpos($border,'b')))<br />$b.='b';<br />$this-&gt;cell($w,$h,substr($s,$j,$i-$j),$b,2,$align,$fill);<br />$this-&gt;x=$this-&gt;lmargin;<br />}</p><p>function write($h,$txt,$link='')<br />{<br />if($this-&gt;currentfont['type']=='type0')<br />$this-&gt;mbwrite($h,$txt,$link);<br />else<br />parent::write($h,$txt,$link);<br />}</p><p>function mbwrite($h,$txt,$link)<br />{<br />//multi-byte version of write()<br />$cw=&amp;$this-&gt;currentfont['cw'];<br />$w=$this-&gt;w-$this-&gt;rmargin-$this-&gt;x;<br />$wmax=($w-2*$this-&gt;cmargin)*1000/$this-&gt;fontsize;<br />$s=str_replace(&quot;\r&quot;,'',$txt);<br />$nb=strlen($s);<br />$sep=-1;<br />$i=0;<br />$j=0;<br />$l=0;<br />$nl=1;<br />while($i&lt;$nb)<br />{<br />//get next character<br />$c=$s[$i];<br />//check if ascii or mb<br />$ascii=(ord($c)&lt;128);<br />if($c==&quot;\n&quot;<br />{<br />//explicit line break<br />$this-&gt;cell($w,$h,substr($s,$j,$i-$j),0,2,'',0,$link);<br />$i++;<br />$sep=-1;<br />$j=$i;<br />$l=0;<br />if($nl==1)<br />{<br />$this-&gt;x=$this-&gt;lmargin;<br />$w=$this-&gt;w-$this-&gt;rmargin-$this-&gt;x;<br />$wmax=($w-2*$this-&gt;cmargin)*1000/$this-&gt;fontsize;<br />}<br />$nl++;<br />continue;<br />}<br />if(!$ascii or $c==' ')<br />$sep=$i;<br />$l+=$ascii ? $cw[$c] : 1000;<br />if($l&gt;$wmax)<br />{<br />//automatic line break<br />if($sep==-1 or $i==$j)<br />{<br />if($this-&gt;x&gt;$this-&gt;lmargin)<br />{<br />//move to next line<br />$this-&gt;x=$this-&gt;lmargin;<br />$this-&gt;y+=$h;<br />$w=$this-&gt;w-$this-&gt;rmargin-$this-&gt;x;<br />$wmax=($w-2*$this-&gt;cmargin)*1000/$this-&gt;fontsize;<br />$i++;<br />$nl++;<br />continue;<br />}<br />if($i==$j)<br />$i+=$ascii ? 1 : 2;<br />$this-&gt;cell($w,$h,substr($s,$j,$i-$j),0,2,'',0,$link);<br />}<br />else<br />{<br />$this-&gt;cell($w,$h,substr($s,$j,$sep-$j),0,2,'',0,$link);<br />$i=($s[$sep]==' ') ? $sep+1 : $sep;<br />}<br />$sep=-1;<br />$j=$i;<br />$l=0;<br />if($nl==1)<br />{<br />$this-&gt;x=$this-&gt;lmargin;<br />$w=$this-&gt;w-$this-&gt;rmargin-$this-&gt;x;<br />$wmax=($w-2*$this-&gt;cmargin)*1000/$this-&gt;fontsize;<br />}<br />$nl++;<br />}<br />else<br />$i+=$ascii ? 1 : 2;<br />}<br />//last chunk<br />if($i!=$j)<br />$this-&gt;cell($l/1000*$this-&gt;fontsize,$h,substr($s,$j,$i-$j),0,0,'',0,$link);<br />}</p><p>function _putfonts()<br />{<br />$nf=$this-&gt;n;<br />foreach($this-&gt;diffs as $diff)<br />{<br />//encodings<br />$this-&gt;_newobj();<br />$this-&gt;_out('&lt;&lt;/type /encoding /baseencoding /winansiencoding /differences ['.$diff.']&gt;&gt;');<br />$this-&gt;_out('endobj');<br />}<br />$mqr=get_magic_quotes_runtime();<br />set_magic_quotes_runtime(0);<br />foreach($this-&gt;fontfiles as $file=&gt;$info)<br />{<br />//font file embedding<br />$this-&gt;_newobj();<br />$this-&gt;fontfiles[$file]['n']=$this-&gt;n;<br />if(defined('fpdf_fontpath'))<br />$file=fpdf_fontpath.$file;<br />$size=filesize($file);<br />if(!$size)<br />$this-&gt;error('font file not found');<br />$this-&gt;_out('&lt;&lt;/length '.$size);<br />if(substr($file,-2)=='.z')<br />$this-&gt;_out('/filter /flatedecode');<br />$this-&gt;_out('/length1 '.$info['length1']);<br />if(isset($info['length2']))<br />$this-&gt;_out('/length2 '.$info['length2'].' /length3 0');<br />$this-&gt;_out('&gt;&gt;');<br />$f=fopen($file,'rb');<br />$this-&gt;_putstream(fread($f,$size));<br />fclose($f);<br />$this-&gt;_out('endobj');<br />}<br />set_magic_quotes_runtime($mqr);<br />foreach($this-&gt;fonts as $k=&gt;$font)<br />{<br />//font objects<br />$this-&gt;_newobj();<br />$this-&gt;fonts[$k]['n']=$this-&gt;n;<br />$this-&gt;_out('&lt;&lt;/type /font');<br />if($font['type']=='type0')<br />$this-&gt;_puttype0($font);<br />else<br />{<br />$name=$font['name'];<br />$this-&gt;_out('/basefont /'.$name);<br />if($font['type']=='core')<br />{<br />//standard font<br />$this-&gt;_out('/subtype /type1');<br />if($name!='symbol' and $name!='zapfdingbats')<br />$this-&gt;_out('/encoding /winansiencoding');<br />}<br />else<br />{<br />//additional font<br />$this-&gt;_out('/subtype /'.$font['type']);<br />$this-&gt;_out('/firstchar 32');<br />$this-&gt;_out('/lastchar 255');<br />$this-&gt;_out('/widths '.($this-&gt;n+1).' 0 r');<br />$this-&gt;_out('/fontdescriptor '.($this-&gt;n+2).' 0 r');<br />if($font['enc'])<br />{<br />if(isset($font['diff']))<br />$this-&gt;_out('/encoding '.($nf+$font['diff']).' 0 r');<br />else<br />$this-&gt;_out('/encoding /winansiencoding');<br />}<br />}<br />$this-&gt;_out('&gt;&gt;');<br />$this-&gt;_out('endobj');<br />if($font['type']!='core')<br />{<br />//widths<br />$this-&gt;_newobj();<br />$cw=&amp;$font['cw'];<br />$s='[';<br />for($i=32;$i&lt;=255;$i++)<br />$s.=$cw[chr($i)].' ';<br />$this-&gt;_out($s.']');<br />$this-&gt;_out('endobj');<br />//descriptor<br />$this-&gt;_newobj();<br />$s='&lt;&lt;/type /fontdescriptor /fontname /'.$name;<br />foreach($font['desc'] as $k=&gt;$v)<br />$s.=' /'.$k.' '.$v;<br />$file=$font['file'];<br />if($file)<br />$s.=' /fontfile'.($font['type']=='type1' ? '' : '2').' '.$this-&gt;fontfiles[$file]['n'].' 0 r';<br />$this-&gt;_out($s.'&gt;&gt;');<br />$this-&gt;_out('endobj');<br />}<br />}<br />}<br />}</p><p>function _puttype0($font)<br />{<br />//type0<br />$this-&gt;_out('/subtype /type0');<br />$this-&gt;_out('/basefont /'.$font['name'].'-'.$font['cmap']);<br />$this-&gt;_out('/encoding /'.$font['cmap']);<br />$this-&gt;_out('/descendantfonts ['.($this-&gt;n+1).' 0 r]');<br />$this-&gt;_out('&gt;&gt;');<br />$this-&gt;_out('endobj');<br />//cidfont<br />$this-&gt;_newobj();<br />$this-&gt;_out('&lt;&lt;/type /font');<br />$this-&gt;_out('/subtype /cidfonttype0');<br />$this-&gt;_out('/basefont /'.$font['name']);<br />$this-&gt;_out('/cidsysteminfo &lt;&lt;/registry (adobe) /ordering ('.$font['registry']['ordering'].') /supplement '.$font['registry']['supplement'].'&gt;&gt;');<br />$this-&gt;_out('/fontdescriptor '.($this-&gt;n+1).' 0 r');<br />$w='/w [1 [';<br />foreach($font['cw'] as $w)<br />$w.=$w.' ';<br />$this-&gt;_out($w.']]');<br />$this-&gt;_out('&gt;&gt;');<br />$this-&gt;_out('endobj');<br />//font descriptor<br />$this-&gt;_newobj();<br />$this-&gt;_out('&lt;&lt;/type /fontdescriptor');<br />$this-&gt;_out('/fontname /'.$font['name']);<br />$this-&gt;_out('/flags 6');<br />$this-&gt;_out('/fontbbox [0 0 1000 1000]');<br />$this-&gt;_out('/italicangle 0');<br />$this-&gt;_out('/ascent 1000');<br />$this-&gt;_out('/descent 0');<br />$this-&gt;_out('/capheight 1000');<br />$this-&gt;_out('/stemv 10');<br />$this-&gt;_out('&gt;&gt;');<br />$this-&gt;_out('endobj');<br />}<br />}<br />?&gt;</p><p>将以上代码存为chinese.php即可引用。但用它只能得到一种字体。为了支持所有中文字体，可用ttf2pt1程序将truetype字体转化pt1 字体，一个一个地转（具体方法在fpdf的教程中有详细说明）。为了支持其他中文字体，养分要修改上面的chinese.php，如下：</p><p>1: replace the following line in the addgbfont() method:</p><p>function addgbfont($family='gb',$name='stsongstd-light-acro') <br />{ <br />$cw=$globals['gb_widths']; <br />// $name='stsongstd-light-acro'; <br />$cmap='gbkp-euc-h'; <br />........</p><p>2: this is a sample.</p><p>&lt;?php <br />require('chinese.php');</p><p>$pdf=new pdf_chinese(); <br />$pdf-&gt;addgbfont('simsun','宋体'); <br />$pdf-&gt;addgbfont('simhei','黑体'); <br />$pdf-&gt;addgbfont('simkai','楷体_gb2312'); <br />$pdf-&gt;addgbfont('sinfang','仿宋_gb2312''); <br />$pdf-&gt;open(); <br />$pdf-&gt;addpage(); <br />$pdf-&gt;setfont('simsun','',20); <br />$pdf-&gt;write(10,'简体中文汉字&lsquo;); <br />$pdf-&gt;setfont('simhei','',20); <br />$pdf-&gt;write(10,'简体中文汉字&rsquo;); <br />$pdf-&gt;setfont('simkai','',20); <br />$pdf-&gt;write(10,'简体中文汉字&lsquo;); <br />$pdf-&gt;setfont('sinfang','',20); <br />$pdf-&gt;write(10,'简体中文汉字&rsquo;); <br />$pdf-&gt;output(); <br />?&gt;</p><p>Copyright © 2008</p><p><a href="http://www.wou148.cn/post/85.html" target="_blank">继续阅读《用PHP创建PDF中文文档》的全文内容...</a></p><p>分类: <a href="http://www.wou148.cn/catalog.asp?cate=4">PHP·ASP·DATABASE</a> | Tags:  | <a href="http://www.wou148.cn/post/85.html#comment" target="_blank">添加评论</a>(0)</p><p><a href="http://www.wou148.cn/post/85.html#comment" target="_blank">还没有相关文章，您来说两句？</a></p>]]></description><category>PHP·ASP·DATABASE</category><comments>http://www.wou148.cn/post/85.html#comment</comments><wfw:comment>http://www.wou148.cn/</wfw:comment><wfw:commentRss>http://www.wou148.cn/feed.asp?cmt=85</wfw:commentRss><trackback:ping>http://www.wou148.cn/cmd.asp?act=tb&amp;id=85&amp;key=8f9fa9fd</trackback:ping></item></channel></rss>

