<?xml version="1.0" encoding="utf-8"?>
<!-- generator="FeedCreator 1.7.2-ppt DokuWiki" -->
<?xml-stylesheet href="http://phpor.net/wiki/lib/exe/css.php?s=feed" type="text/css"?>
<rss version="2.0">
    <channel>
        <title>phpor维基</title>
        <description></description>
        <link>http://phpor.net/wiki/</link>
        <lastBuildDate>Sat, 19 May 2012 16:35:58 -0600</lastBuildDate>
        <generator>FeedCreator 1.7.2-ppt DokuWiki</generator>
        <image>
            <url>http://phpor.net/wiki/lib/images/favicon.ico</url>
            <title>phpor维基</title>
            <link>http://phpor.net/wiki/</link>
        </image>
        <item>
            <title>taobao - 创建</title>
            <link>http://phpor.net/wiki/taobao</link>
            <description>2011年6月16号

淘宝分拆后的三家公司依总裁加董事长的机制运营。

一淘的管理团队由总裁“东邪”吴泳铭领衔，汇报给一淘董事长彭蕾。
淘宝网的管理团队由总裁“三丰”姜鹏领衔，汇报给淘宝网董事长陆兆禧。
淘宝商城的管理团队由总裁“逍遥子”张勇领衔，汇报给淘宝商城董事长曾鸣。</description>
            <author>phpor</author>
            <pubDate>Mon, 01 Aug 2011 10:13:27 -0600</pubDate>
        </item>
        <item>
            <title>tech:php:php_extension_writing - 创建</title>
            <link>http://phpor.net/wiki/tech/php/php_extension_writing</link>
            <description>1.  main/php.h 中发现： PHP_FUNCTION 就是ZEND_FUNCTION的别名，即：
#define PHP_FUNCTION            ZEND_FUNCTION
其实，很多”PHP_”开头的宏都用对应的”ZEND_”开头的宏（是不是所有，没有考证）； 这里称为： /* PHP-named Zend macro wrappers */</description>
            <author>phpor</author>
        <category>tech:php</category>
            <pubDate>Sat, 30 Jul 2011 21:34:10 -0600</pubDate>
        </item>
        <item>
            <title>tech:lightinthebox - 创建</title>
            <link>http://phpor.net/wiki/tech/lightinthebox</link>
            <description>*  队列与栈的异同
	*  session 与 cookie的异同
	*  什么叫异常？
	*  创建一个商品数据库，并完成下列操作
		*  查询含有价格低于100.00的商品的类别
		*  查询2008年1月份上架的所有商品

	*  PHP中不适用内部函数，完成字符串拷贝
	*  对一个单链表做转置，要求：时间复杂度为O(n), 空间复杂度为O（1）
	*  有一个非常古老的机器，只要加法溢出就死机；请写一个程序，如果不溢出，返回结果；如果溢出，返回“溢出”
	*  写一个函数判断一个字符串是否回文，函数原型为： function fal($str, $start, $end){}
	*  背包问题…</description>
            <author>phpor</author>
        <category>tech</category>
            <pubDate>Sat, 09 Jul 2011 21:02:57 -0600</pubDate>
        </item>
        <item>
            <title>tech:php:source</title>
            <link>http://phpor.net/wiki/tech/php/source</link>
            <description>问题和兴趣

zend_compile.h

	*  内部类与用户类的区别


#define ZEND_INTERNAL_CLASS         1
#define ZEND_USER_CLASS             2


	*  关于函数的定义 （ Zend/zend_compile.h ）


typedef union _zend_function {
    zend_uchar type;    /* MUST be the first element of this struct! */

    struct {
        zend_uchar type;  /* never used */
        char *function_name; 
        zend_class_entry *scope;
        zend_uint fn_flags;
        union _zend_function *prototype;
        zend_uint num_args;
        zend_uint requir…</description>
            <author>phpor</author>
        <category>tech:php</category>
            <pubDate>Fri, 01 Apr 2011 02:59:32 -0600</pubDate>
        </item>
        <item>
            <title>tech:openplatform</title>
            <link>http://phpor.net/wiki/tech/openplatform</link>
            <description>关于Open Api ：

	*  	Open api 是一种开放数据、应用或资源的一种方式；开放api是一种商业模式、一种心态，也是一种能力。
	*  	Open api 通常以REST或类REST的方式出现
	*  	Open api通常支持xml、json两种数据格式</description>
            <author>phpor</author>
        <category>tech</category>
            <pubDate>Sun, 27 Mar 2011 06:23:08 -0600</pubDate>
        </item>
        <item>
            <title>life:travel:shanghai - [景点安排] </title>
            <link>http://phpor.net/wiki/life/travel/shanghai</link>
            <description>没有去过南方，想首先去上海、杭州看看； 大概这是这个春季最想做的事情了，先安排一下。

时间安排


清明节：4月3日至5日放假公休，共3天。4月2日（星期六）上班。 (最好能再请一天假)</description>
            <author>phpor</author>
        <category>life:travel</category>
            <pubDate>Sun, 27 Mar 2011 02:03:19 -0600</pubDate>
        </item>
        <item>
            <title>tech:php:func:unpack - 创建</title>
            <link>http://phpor.net/wiki/tech/php/func/unpack</link>
            <description>&lt;?php

$binarydata = &quot;\0x04\0x00\0xa0\0x00&quot;;
$array = unpack(&quot;c2/n2&quot;, $binarydata);
print_r($array);

exit;


输出：
Array
(
  [1] =&gt; 12340
  [2] =&gt; 120
)
----------


&lt;?php

$binarydata = &quot;\0x04\0x00\0xa0\0x00&quot;;
$array = unpack(&quot;c2char/n2int&quot;, $binarydata);
print_r($array);

exit;</description>
            <author>phpor</author>
        <category>tech:php:func</category>
            <pubDate>Wed, 23 Mar 2011 20:55:01 -0600</pubDate>
        </item>
    </channel>
</rss>

