-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
193 lines (180 loc) · 14.1 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="zh-CN" xml:lang="zh-CN">
<head profile="http://gmpg.org/xfn/11">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Zero Is Start</title>
<link rel="pingback" href="http://www.ifnoelse.com/xmlrpc.php" />
<link rel="stylesheet" href="http://www.ifnoelse.com/wp-content/themes/clean-and-clear/style.css" type="text/css" />
<link rel="alternate" type="application/rss+xml" title="Zero Is Start » Feed" href="http://www.ifnoelse.com/?feed=rss2" />
<link rel="alternate" type="application/rss+xml" title="Zero Is Start » 评论 Feed" href="http://www.ifnoelse.com/?feed=comments-rss2" />
<link rel='stylesheet' id='wp-pagenavi-css' href='http://www.ifnoelse.com/wp-content/plugins/wp-pagenavi/pagenavi-css.css?ver=2.70' type='text/css' media='all' />
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="http://www.ifnoelse.com/xmlrpc.php?rsd" />
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="http://www.ifnoelse.com/wp-includes/wlwmanifest.xml" />
<meta name="generator" content="WordPress 3.3.2" />
<!-- All in One SEO Pack 1.6.14.3 by Michael Torbert of Semper Fi Web Design[311,347] -->
<link rel="canonical" href="http://www.ifnoelse.com/" />
<!-- /all in one seo pack -->
<style type="text/css">.recentcomments a{display:inline !important;padding:0 !important;margin:0 !important;}</style>
<meta id="syntaxhighlighteranchor" name="syntaxhighlighter-version" content="3.1.3" />
<!-- wp thread comment 1.4.9.4.002 -->
<style type="text/css" media="screen">
.editComment, .editableComment, .textComment{
display: inline;
}
.comment-childs{
border: 1px solid #999;
margin: 5px 2px 2px 4px;
padding: 4px 2px 2px 4px;
background-color: white;
}
.chalt{
background-color: #E2E2E2;
}
#newcomment{
border:1px dashed #777;width:90%;
}
#newcommentsubmit{
color:red;
}
.adminreplycomment{
border:1px dashed #777;
width:99%;
margin:4px;
padding:4px;
}
.mvccls{
color: #999;
}
</style>
</head>
<body class="home blog">
<div class="header">
<form method="get" class="searchform" action="http://www.ifnoelse.com">
<fieldset>
<input type="text" value="" name="s" /><button type="submit" name="searchsubmit" value="Search"></button>
</fieldset>
</form> <p class="title"><a href="http://www.ifnoelse.com/" name="top">Zero Is Start</a></p>
<p class="tagline">Zero Is Start</p>
</div>
<div class="content">
<ul class="menu"><li class="page_item page-item-2"><a href="http://www.ifnoelse.com/?page_id=2">示例页面</a></li>
</ul> <div><div class="main">
<!-- Start: Post -->
<div class="post-4 post type-post status-publish format-standard hentry category-zend-api">
<h2><a href="http://www.ifnoelse.com/?p=4" rel="bookmark" title="Permanent Link to Zend API:深入 PHP 内核 (七)开始创建扩展">Zend API:深入 PHP 内核 (七)开始创建扩展</a> </h2>
<p class="post-meta"><span class="date">2012 年 5 月 24 日</span> <span class="author">admin</span> <span class="cats"><a href="http://www.ifnoelse.com/?cat=3" title="查看 zend api 中的全部文章" rel="category">zend api</a></span>, <span class="comments"><a href="http://www.ifnoelse.com/?p=4#respond" title="《Zend API:深入 PHP 内核 (七)开始创建扩展》上的评论">0</a></span> </p>
<p>我们先来创建一个非常简单的扩展,这个扩展除了一个将其整形参数作为返回值的函数外几乎什么都没有。下面(“例3-2 一个简单的扩展”)就是这个样例的代码: 例3.2 一个简单的扩展 /* include standard header */ #include “php.h” /* declaration of functions to be exported */ ZEND_FUNCTION(first_module); /* compiled function list so Zend knows what‘s in this module */ zend_function_entry firstmod_functions[] = { ZEND_FE(first_module, NULL) {NULL, NULL, NULL} }; /* compiled module information */ zend_module_entry firstmod_module_entry = { STANDARD_MODULE_HEADER, “First Module”, firstmod_functions, [...]</p>
<p class="more"><a href="http://www.ifnoelse.com/?p=4"> </a></p>
</div>
<!-- End: Post -->
<!-- Start: Post -->
<div class="post-1 post type-post status-publish format-standard hentry category-uncategorized">
<h2><a href="http://www.ifnoelse.com/?p=1" rel="bookmark" title="Permanent Link to 世界,你好!">世界,你好!</a> </h2>
<p class="post-meta"><span class="date">2012 年 5 月 24 日</span> <span class="author">admin</span> <span class="cats"><a href="http://www.ifnoelse.com/?cat=1" title="查看 未分类 中的全部文章" rel="category">未分类</a></span>, <span class="comments"><a href="http://www.ifnoelse.com/?p=1#comments" title="《世界,你好!》上的评论">1</a></span> </p>
<p>欢迎使用 WordPress。这是系统自动生成的演示文章。编辑或者删除它,然后开始您的博客!</p>
<p class="more"><a href="http://www.ifnoelse.com/?p=1"> </a></p>
</div>
<!-- End: Post -->
<p class="pagination">
<span class="prev"></span>
<span class="next"></span>
</p>
</div>
<div class="sidebar">
<div class="widget"> <h3>近期文章</h3> <ul>
<li><a href="http://www.ifnoelse.com/?p=4" title="Zend API:深入 PHP 内核 (七)开始创建扩展">Zend API:深入 PHP 内核 (七)开始创建扩展</a></li>
<li><a href="http://www.ifnoelse.com/?p=1" title="世界,你好!">世界,你好!</a></li>
</ul>
</div><div class="widget"><h3>文章归档</h3> <ul>
<li><a href='http://www.ifnoelse.com/?m=201205' title='2012 年五月'>2012 年五月</a></li>
</ul>
</div><div class="widget"><h3>标签云</h3>
<!-- Generated by Simple Tags 2.2 - http://wordpress.org/extend/plugins/simple-tags -->
<div class="st-tag-cloud">
No tags.</div>
</div><div class="widget"><h3>分类目录</h3> <ul>
<li class="cat-item cat-item-3"><a href="http://www.ifnoelse.com/?cat=3" title="查看 zend api 下的所有文章">zend api</a>
</li>
<li class="cat-item cat-item-1"><a href="http://www.ifnoelse.com/?cat=1" title="查看 未分类 下的所有文章">未分类</a>
</li>
</ul>
</div><div class="widget"><h3>近期评论</h3><ul id="recentcomments"><li class="recentcomments"><a href='http://wordpress.org/' rel='external nofollow' class='url'>WordPress 先生</a> 发表在《<a href="http://www.ifnoelse.com/?p=1#comment-1">世界,你好!</a>》</li></ul></div><div class="widget"><h3>功能</h3> <ul>
<li><a href="http://www.ifnoelse.com/wp-login.php">登录</a></li>
<li><a href="http://www.ifnoelse.com/?feed=rss2" title="使用 RSS 2.0 订阅本站点内容">文章 <abbr title="Really Simple Syndication">RSS</abbr></a></li>
<li><a href="http://www.ifnoelse.com/?feed=comments-rss2" title="使用 RSS 订阅本站点的所有文章的近期评论">评论 <abbr title="Really Simple Syndication">RSS</abbr></a></li>
<li><a href="http://wordpress.org/" title="基于 WordPress,一个优美、先进的个人信息发布平台。">WordPress.org</a></li>
</ul>
</div>
</div><!--cos-html-cache-safe-tag--> </div></div>
<div class="footer">
<ul class="menu"><li class="page_item page-item-2"><a href="http://www.ifnoelse.com/?page_id=2">示例页面</a></li>
</ul> <p>Powered by <a href="http://wordpress.org/">WordPress</a>. Designed by <a href="http://atrakcje-turystyczne.pl/">Atrakcje Turystyczne</a>.</p>
</div>
<script type='text/javascript' src='http://www.ifnoelse.com/wp-content/plugins/syntaxhighlighter/syntaxhighlighter3/scripts/shCore.js?ver=3.0.83c'></script>
<script type='text/javascript' src='http://www.ifnoelse.com/wp-content/plugins/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushAS3.js?ver=3.0.83c'></script>
<script type='text/javascript' src='http://www.ifnoelse.com/wp-content/plugins/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushBash.js?ver=3.0.83c'></script>
<script type='text/javascript' src='http://www.ifnoelse.com/wp-content/plugins/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushColdFusion.js?ver=3.0.83c'></script>
<script type='text/javascript' src='http://www.ifnoelse.com/wp-content/plugins/syntaxhighlighter/third-party-brushes/shBrushClojure.js?ver=20090602'></script>
<script type='text/javascript' src='http://www.ifnoelse.com/wp-content/plugins/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushCpp.js?ver=3.0.83c'></script>
<script type='text/javascript' src='http://www.ifnoelse.com/wp-content/plugins/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushCSharp.js?ver=3.0.83c'></script>
<script type='text/javascript' src='http://www.ifnoelse.com/wp-content/plugins/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushCss.js?ver=3.0.83c'></script>
<script type='text/javascript' src='http://www.ifnoelse.com/wp-content/plugins/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushDelphi.js?ver=3.0.83c'></script>
<script type='text/javascript' src='http://www.ifnoelse.com/wp-content/plugins/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushDiff.js?ver=3.0.83c'></script>
<script type='text/javascript' src='http://www.ifnoelse.com/wp-content/plugins/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushErlang.js?ver=3.0.83c'></script>
<script type='text/javascript' src='http://www.ifnoelse.com/wp-content/plugins/syntaxhighlighter/third-party-brushes/shBrushFSharp.js?ver=20091003'></script>
<script type='text/javascript' src='http://www.ifnoelse.com/wp-content/plugins/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushGroovy.js?ver=3.0.83c'></script>
<script type='text/javascript' src='http://www.ifnoelse.com/wp-content/plugins/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushJava.js?ver=3.0.83c'></script>
<script type='text/javascript' src='http://www.ifnoelse.com/wp-content/plugins/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushJavaFX.js?ver=3.0.83c'></script>
<script type='text/javascript' src='http://www.ifnoelse.com/wp-content/plugins/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushJScript.js?ver=3.0.83c'></script>
<script type='text/javascript' src='http://www.ifnoelse.com/wp-content/plugins/syntaxhighlighter/third-party-brushes/shBrushLatex.js?ver=20090613'></script>
<script type='text/javascript' src='http://www.ifnoelse.com/wp-content/plugins/syntaxhighlighter/third-party-brushes/shBrushMatlabKey.js?ver=20091209'></script>
<script type='text/javascript' src='http://www.ifnoelse.com/wp-content/plugins/syntaxhighlighter/third-party-brushes/shBrushObjC.js?ver=20091207'></script>
<script type='text/javascript' src='http://www.ifnoelse.com/wp-content/plugins/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushPerl.js?ver=3.0.83c'></script>
<script type='text/javascript' src='http://www.ifnoelse.com/wp-content/plugins/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushPhp.js?ver=3.0.83c'></script>
<script type='text/javascript' src='http://www.ifnoelse.com/wp-content/plugins/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushPlain.js?ver=3.0.83c'></script>
<script type='text/javascript' src='http://www.ifnoelse.com/wp-content/plugins/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushPowerShell.js?ver=3.0.83c'></script>
<script type='text/javascript' src='http://www.ifnoelse.com/wp-content/plugins/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushPython.js?ver=3.0.83c'></script>
<script type='text/javascript' src='http://www.ifnoelse.com/wp-content/plugins/syntaxhighlighter/third-party-brushes/shBrushR.js?ver=20100919'></script>
<script type='text/javascript' src='http://www.ifnoelse.com/wp-content/plugins/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushRuby.js?ver=3.0.83c'></script>
<script type='text/javascript' src='http://www.ifnoelse.com/wp-content/plugins/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushScala.js?ver=3.0.83c'></script>
<script type='text/javascript' src='http://www.ifnoelse.com/wp-content/plugins/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushSql.js?ver=3.0.83c'></script>
<script type='text/javascript' src='http://www.ifnoelse.com/wp-content/plugins/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushVb.js?ver=3.0.83c'></script>
<script type='text/javascript' src='http://www.ifnoelse.com/wp-content/plugins/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushXml.js?ver=3.0.83c'></script>
<script type='text/javascript'>
(function(){
var corecss = document.createElement('link');
var themecss = document.createElement('link');
var corecssurl = "http://www.ifnoelse.com/wp-content/plugins/syntaxhighlighter/syntaxhighlighter3/styles/shCore.css?ver=3.0.83c";
if ( corecss.setAttribute ) {
corecss.setAttribute( "rel", "stylesheet" );
corecss.setAttribute( "type", "text/css" );
corecss.setAttribute( "href", corecssurl );
} else {
corecss.rel = "stylesheet";
corecss.href = corecssurl;
}
document.getElementsByTagName("head")[0].insertBefore( corecss, document.getElementById("syntaxhighlighteranchor") );
var themecssurl = "http://www.ifnoelse.com/wp-content/plugins/syntaxhighlighter/syntaxhighlighter3/styles/shThemeDefault.css?ver=3.0.83c";
if ( themecss.setAttribute ) {
themecss.setAttribute( "rel", "stylesheet" );
themecss.setAttribute( "type", "text/css" );
themecss.setAttribute( "href", themecssurl );
} else {
themecss.rel = "stylesheet";
themecss.href = themecssurl;
}
//document.getElementById("syntaxhighlighteranchor").appendChild(themecss);
document.getElementsByTagName("head")[0].insertBefore( themecss, document.getElementById("syntaxhighlighteranchor") );
})();
SyntaxHighlighter.config.strings.expandSource = '+ expand source';
SyntaxHighlighter.config.strings.help = '帮助';
SyntaxHighlighter.config.strings.alert = 'SyntaxHighlighter\n\n';
SyntaxHighlighter.config.strings.noBrush = '无法找到Brush:';
SyntaxHighlighter.config.strings.brushNotHtmlScript = 'Brush不能设置 html-script选项';
SyntaxHighlighter.defaults['collapse'] = true;
SyntaxHighlighter.defaults['light'] = true;
SyntaxHighlighter.defaults['pad-line-numbers'] = false;
SyntaxHighlighter.all();
</script>
</body>
</html><!--this is a real static html file created at 2012-05-24 14:24:48 by cos-html-cache 2.7.3 -->