一、列表(List)
list 是一个可以在其中存储一系列项目的数据结构。list 的项目之间需用逗号分开,并用一对中括号括将所有的项目括起来,以表明这是一个 list 。下例用以展示 list 的一些基本操作:
# 定义一个 list 对象 class_list: class_list = [\'Michael\', \'Bob\', \'Tracy\'] # 获得一个 class_list 的长度 print \'class have\', len(class_list), \'students\' # 访问class_list中的对象 print \'The 3rd student in class is\', class_list[2] # 往 class_list 中插入对象 class_list.append(\'Paul\') # 从 class_list 中删除一个项目 del class_list[0] # 对 class_list 进行排序 class_list.sort() # 遍历整个class_list中的项目 print \'These students are :\', for student in class_list: print student,
输出结果为:
class have 3 students
The 3rd student in class is Tracy
These students are : Bob Paul Tracy
关于上面的代码有几点要注意的是:
可以往 class_list 中加入任何类型的对象,也就是说,并不要求一个 list 中的项目具有相同类型。你甚至可以往 class_list 中插入一个list。
排序函数作用于本身, 而不是返回一个副本,这与字符串类型是不同的,因为字符串不可修改。
print 函数的end关键字参数用来指定输入完成之后的输出,默认是换行符,上面的代码用空格符替代换行符。
二、元组(Tuple)
tuple 在用法与概念上与 list 没有多大差别,可以将 tuple 看做是一个只读版list。也就是说tuple一经定义便不能被修改——不能添加和删除对象,也不能修改tuple中的对象。
tuple中的项同样应该用逗号分开,并用圆括号将这些项目括起来以表是是一个tuple。这个圆括号是可选的,也就是说可以用以下两种方式定义一个tuple:
t = \’Adam\’, \’Lisa\’, \’Bart\’
t = (\’Adam\’, \’Lisa\’, \’Bart\’)
不过省掉那对圆括号不见得是什么好的习惯。另外当tuple只有一个项时,第一项之后必须有一个逗号,该情况下应该这样定义t = (\’Adam\’,)。这似乎是一个古怪的约束,但是假如没有这个逗号,不带括号定义的tuple就变成了t = \’Adam\’这明显具有二义性。
三、字典(Dictionary)
字典可以看做是一组键-值(key-value)对的集合。键必须是唯一的,而每一个键关联着一个值。key必须是一个不可变的对象(如:tuple、数值型、字符串)。还要注意的是,在字典中的键值对并没有以任何方式进行排序。
一个字典的定义应该照这样的格式d={key1 : value1, key2 : value2, key3 : value3}。键和值之间用冒号分隔,而键值对之间用逗号相隔,再用大括号将所有的键值对括起来。一些基本操作如下:
# 字典的定义 d = { \'Adam\': 95, \'Lisa\': 85, \'Bart\': 59 } # 通过键来获取值 print \"Adam\'s score is\", d[\'Adam\'] # 删除一个键值对 del d[\'Bart\'] # 遍历字典 for name, score in d.items(): print \'{0} is {1}\'.format(name, score) # 往字典中增加一个键值对 d[\'Paul\'] = 72 # 判断字典中是否存在某键,也可以用 if ab.has_key(\'Lisa\') if \'Lisa\' in d: print \"Lisa\'s address is\", d[\'Lisa\']
输出的结果为:
Adam\'s score is 95 Lisa is 85 Adam is 95 Lisa\'s address is 85
四、序列(Sequences)
上面介绍的三种内建数据结构都是序列,索引操作是序列的一个基本操作。通过下标操作可以直接访问序列中的对象。上面虽然已经演示了下标操作——队列和元组用数字下标,字典用关键字下标。
序列的下标是从0开始的,上面的例子中只使用了下标为正数的情况,其实下标还可以为负数,如-1,-2,-3…。负数下标表示的意义为反方向的位置,如class_list[-1]返回的是class_list的倒数第一个项目。
序列不但支持负数下标还支持双下标,这对双下标表示一个区间。如class_list[0:3]返回的是一个class_list中从下标为1到下标为3之前的子序列副本。注意这个区间是一对半闭半开的区间。这种操作被称作切片操作(slicing operation)。如果切片操作的第二个下标超出了序列的范围,那么切片操作会到序列的末尾终止。切片操作中的两个下标都有默认值,第一个的默认值为0,第二个的大小为序列的长度。
还可以给切片操作提供第三个参数,第三个参数代表切片操作的步长,它的默认值是1。步长代表了项与项之间的间距,比方name[0:10:3],返回的就是name中下标为0,3,6,9组成的子序列。
五、集合(Set)
集合是无序简单对象的聚集。当你只关注一个对象是否存在于聚集中,而不管它存在的顺序或在出现的次数时,则适宜用集合。基本功能:判断是否是集合的成员、一个集合是不是另一个集合的子集、获取两个集合的交集等等。实例:
s = set([\'Adam\', \'Lisa\', \'Bart\', \'Paul\']) # 判断对象是否在集合中 if \'Bart\' in s: print \"Bart is in ?\", \'Bart\' in s # 使用copy函数来拷贝一个set sc = s.copy() # 往集合中添加对象 sc.add(\'Bill\') # 从集合中删除对象 sc.remove(\'Adam\') # 求两个集合的交集,也可以使用 s.intersection(sc) print s & sc
输出的结果:
Bart is in ? True set([\'Lisa\', \'Paul\', \'Bart\'])
NAME | COMPONENT | DURATION | 0 ms | 40 ms | 80 ms | 120 ms | 160 ms | 200 ms | 240 ms | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Bootstrap | Timer | 41.01 ms | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Routing | Timer | 0.11 ms | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Before Filters | Timer | 0.06 ms | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Controller | Timer | 169.56 ms | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
After Filters | Timer | 0.96 ms |
Time | Query String | |
---|---|---|
0.94 ms | SELECT * FROM `dr_1_share_index` WHERE `id` = 44847 | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Database/BaseBuilder.php:1616 |
1 /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Database/BaseBuilder.php:1616 CodeIgniter\Database\BaseConnection->query() 2 /webdata/wwwroot/www.wxx86.cn/dayrui/Fcms/Core/Model.php:498 CodeIgniter\Database\BaseBuilder->get() 3 /webdata/wwwroot/www.wxx86.cn/dayrui/Fcms/Control/Show.php:19 Phpcmf\Model->get() 4 /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/CodeIgniter.php:943 Phpcmf\Control\Show->index() 5 /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/CodeIgniter.php:503 CodeIgniter\CodeIgniter->runController() 6 /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/CodeIgniter.php:361 CodeIgniter\CodeIgniter->handleRequest() 7 /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/Init.php:106 CodeIgniter\CodeIgniter->run() 8 /webdata/wwwroot/www.wxx86.cn/dayrui/Fcms/Init.php:500 require() 9 /webdata/wwwroot/www.wxx86.cn/public/index.php:50 require() |
||
0.86 ms | SELECT * FROM `dr_1_article` WHERE `id` = 44847 | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Database/BaseBuilder.php:1616 |
1 /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Database/BaseBuilder.php:1616 CodeIgniter\Database\BaseConnection->query() 2 /webdata/wwwroot/www.wxx86.cn/dayrui/Fcms/Core/Model.php:498 CodeIgniter\Database\BaseBuilder->get() 3 /webdata/wwwroot/www.wxx86.cn/dayrui/App/Module/Models/Content.php:891 Phpcmf\Model->get() 4 /webdata/wwwroot/www.wxx86.cn/dayrui/App/Module/Extends/Home/Module.php:477 Phpcmf\Model\Module\Content->get_data() 5 /webdata/wwwroot/www.wxx86.cn/dayrui/Fcms/Control/Show.php:36 Phpcmf\Home\Module->_Show() 6 /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/CodeIgniter.php:943 Phpcmf\Control\Show->index() 7 /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/CodeIgniter.php:503 CodeIgniter\CodeIgniter->runController() 8 /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/CodeIgniter.php:361 CodeIgniter\CodeIgniter->handleRequest() 9 /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/Init.php:106 CodeIgniter\CodeIgniter->run() 10 /webdata/wwwroot/www.wxx86.cn/dayrui/Fcms/Init.php:500 require() 11 /webdata/wwwroot/www.wxx86.cn/public/index.php:50 require() |
||
0.96 ms | SELECT * FROM `dr_1_article_data_0` WHERE `id` = 44847 | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Database/BaseBuilder.php:1616 |
1 /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Database/BaseBuilder.php:1616 CodeIgniter\Database\BaseConnection->query() 2 /webdata/wwwroot/www.wxx86.cn/dayrui/Fcms/Core/Model.php:498 CodeIgniter\Database\BaseBuilder->get() 3 /webdata/wwwroot/www.wxx86.cn/dayrui/App/Module/Models/Content.php:904 Phpcmf\Model->get() 4 /webdata/wwwroot/www.wxx86.cn/dayrui/App/Module/Extends/Home/Module.php:477 Phpcmf\Model\Module\Content->get_data() 5 /webdata/wwwroot/www.wxx86.cn/dayrui/Fcms/Control/Show.php:36 Phpcmf\Home\Module->_Show() 6 /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/CodeIgniter.php:943 Phpcmf\Control\Show->index() 7 /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/CodeIgniter.php:503 CodeIgniter\CodeIgniter->runController() 8 /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/CodeIgniter.php:361 CodeIgniter\CodeIgniter->handleRequest() 9 /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/Init.php:106 CodeIgniter\CodeIgniter->run() 10 /webdata/wwwroot/www.wxx86.cn/dayrui/Fcms/Init.php:500 require() 11 /webdata/wwwroot/www.wxx86.cn/public/index.php:50 require() |
||
0.85 ms | SELECT * FROM `dr_1_article` WHERE `catid` = 4 AND `id` < 44847 ORDER BY `id` desc LIMIT 1 | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Database/BaseBuilder.php:1616 |
1 /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Database/BaseBuilder.php:1616 CodeIgniter\Database\BaseConnection->query() 2 /webdata/wwwroot/www.wxx86.cn/dayrui/App/Module/Extends/Home/Module.php:774 CodeIgniter\Database\BaseBuilder->get() 3 /webdata/wwwroot/www.wxx86.cn/dayrui/App/Module/Extends/Home/Module.php:497 Phpcmf\Home\Module->_Show_Data() 4 /webdata/wwwroot/www.wxx86.cn/dayrui/Fcms/Control/Show.php:36 Phpcmf\Home\Module->_Show() 5 /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/CodeIgniter.php:943 Phpcmf\Control\Show->index() 6 /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/CodeIgniter.php:503 CodeIgniter\CodeIgniter->runController() 7 /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/CodeIgniter.php:361 CodeIgniter\CodeIgniter->handleRequest() 8 /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/Init.php:106 CodeIgniter\CodeIgniter->run() 9 /webdata/wwwroot/www.wxx86.cn/dayrui/Fcms/Init.php:500 require() 10 /webdata/wwwroot/www.wxx86.cn/public/index.php:50 require() |
||
1.72 ms | SELECT * FROM `dr_1_article` WHERE `catid` = 4 AND `id` > 44847 ORDER BY `id` asc LIMIT 1 | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Database/BaseBuilder.php:1616 |
1 /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Database/BaseBuilder.php:1616 CodeIgniter\Database\BaseConnection->query() 2 /webdata/wwwroot/www.wxx86.cn/dayrui/App/Module/Extends/Home/Module.php:784 CodeIgniter\Database\BaseBuilder->get() 3 /webdata/wwwroot/www.wxx86.cn/dayrui/App/Module/Extends/Home/Module.php:497 Phpcmf\Home\Module->_Show_Data() 4 /webdata/wwwroot/www.wxx86.cn/dayrui/Fcms/Control/Show.php:36 Phpcmf\Home\Module->_Show() 5 /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/CodeIgniter.php:943 Phpcmf\Control\Show->index() 6 /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/CodeIgniter.php:503 CodeIgniter\CodeIgniter->runController() 7 /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/CodeIgniter.php:361 CodeIgniter\CodeIgniter->handleRequest() 8 /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/Init.php:106 CodeIgniter\CodeIgniter->run() 9 /webdata/wwwroot/www.wxx86.cn/dayrui/Fcms/Init.php:500 require() 10 /webdata/wwwroot/www.wxx86.cn/public/index.php:50 require() |
||
16.1 ms | SELECT * FROM `dr_1_article` WHERE `dr_1_article`.`catid` = 4 ORDER BY `dr_1_article`.`hits` DESC LIMIT 10 | /webdata/wwwroot/www.wxx86.cn/dayrui/Fcms/Core/View.php:1332 |
1 /webdata/wwwroot/www.wxx86.cn/dayrui/Fcms/Core/View.php:1332 CodeIgniter\Database\BaseConnection->query() 2 /webdata/wwwroot/www.wxx86.cn/dayrui/App/Module/Action/Module.php:296 Phpcmf\View->_query() 3 /webdata/wwwroot/www.wxx86.cn/dayrui/Fcms/Core/View.php:1280 require() 4 /webdata/wwwroot/www.wxx86.cn/cache/template/_DS_webdata_DS_wwwroot_DS_www.wxx86.cn_DS_template_DS_pc_DS_default_DS_home_DS_show.html.cache.php:122 Phpcmf\View->list_tag() 5 /webdata/wwwroot/www.wxx86.cn/dayrui/Fcms/Core/View.php:284 include() 6 /webdata/wwwroot/www.wxx86.cn/dayrui/App/Module/Extends/Home/Module.php:596 Phpcmf\View->display() 7 /webdata/wwwroot/www.wxx86.cn/dayrui/Fcms/Control/Show.php:36 Phpcmf\Home\Module->_Show() 8 /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/CodeIgniter.php:943 Phpcmf\Control\Show->index() 9 /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/CodeIgniter.php:503 CodeIgniter\CodeIgniter->runController() 10 /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/CodeIgniter.php:361 CodeIgniter\CodeIgniter->handleRequest() 11 /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/Init.php:106 CodeIgniter\CodeIgniter->run() 12 /webdata/wwwroot/www.wxx86.cn/dayrui/Fcms/Init.php:500 require() 13 /webdata/wwwroot/www.wxx86.cn/public/index.php:50 require() |
模板 | 路径 |
---|---|
show.html | /webdata/wwwroot/www.wxx86.cn/template/pc/default/home/show.html |
header.html | /webdata/wwwroot/www.wxx86.cn/template/pc/default/home/header.html |
footer.html | /webdata/wwwroot/www.wxx86.cn/template/pc/default/home/footer.html |
模板 | 提示 |
---|---|
show.html | 由于模板文件[/webdata/wwwroot/www.wxx86.cn/template/pc/default/home/article/show.html]不存在,因此本页面引用主目录的模板[/webdata/wwwroot/www.wxx86.cn/template/pc/default/home/show.html] |
header.html | 由于模板文件[/webdata/wwwroot/www.wxx86.cn/template/pc/default/home/article/header.html]不存在,因此本页面引用主目录的模板[/webdata/wwwroot/www.wxx86.cn/template/pc/default/home/header.html] |
footer.html | 由于模板文件[/webdata/wwwroot/www.wxx86.cn/template/pc/default/home/article/footer.html]不存在,因此本页面引用主目录的模板[/webdata/wwwroot/www.wxx86.cn/template/pc/default/home/footer.html] |
id | '44847' |
catid | '4' |
title | 'Python内建数据结构详解' |
thumb | NULL |
keywords | '字典, 列表, 序列, 元组, 集合, Python内建数据结构' |
description | '一、列表(List) list 是一个可以在其中存储一系列项目的数据结构。list 的项目之间需用逗号分开,并用一对中括号括将所有的项目括起来,以表明这是一个 list 。下例用以展示 list 的一些基本操作: # 定义一个 list 对象 class_list: class_list = [\\\'Michael\\\', \\\'Bob\\\',' |
hits | NULL |
uid | '1' |
author | 'admin' |
status | '9' |
url | '/program/44847.html' |
link_id | '0' |
tableid | '0' |
inputip | '' |
inputtime | '2023-07-31 02:32:30' |
updatetime | '2023-07-31 02:32:30' |
displayorder | '0' |
content | '<p><strong>一、列表(List)</strong> </p> <p>list 是一个可以在其中存储一系列项目的数据结构。list 的项目之间需用逗号分开,并用一对中括号括将所有的项目括起来,以表明这是一个 list 。下例用以展示 list 的一些基本操作:</p> <pre class="brush:py;"> # 定义一个 list 对象 class_list: class_list = [\\\'Michael\\\', \\\'Bob\\\', \\\'Tracy\\\'] # 获得一个 class_list 的长度 print \\\'class have\\\', len(class_list), \\\'students\\\' # 访问class_list中的对象 print \\\'The 3rd student in class is\\\', class_list[2] # 往 class_list 中插入对象 class_list.append(\\\'Paul\\\') # 从 class_list 中删除一个项目 del class_list[0] # 对 class_list 进行排序 class_list.sort() # 遍历整个class_list中的项目 print \\\'These students are :\\\', for student in class_list: print student, </pre> <p>输出结果为:</p> <p>class have 3 students<br /> The 3rd student in class is Tracy<br /> These students are : Bob Paul Tracy </p> <p>关于上面的代码有几点要注意的是:</p> <p>可以往 class_list 中加入任何类型的对象,也就是说,并不要求一个 list 中的项目具有相同类型。你甚至可以往 class_list 中插入一个list。<br /> 排序函数作用于本身, 而不是返回一个副本,这与字符串类型是不同的,因为字符串不可修改。<br /> print 函数的end关键字参数用来指定输入完成之后的输出,默认是换行符,上面的代码用空格符替代换行符。 </p> <p><strong>二、元组(Tuple)</strong> </p> <p>tuple 在用法与概念上与 list 没有多大差别,可以将 tuple 看做是一个只读版list。也就是说tuple一经定义便不能被修改——不能添加和删除对象,也不能修改tuple中的对象。</p> <p>tuple中的项同样应该用逗号分开,并用圆括号将这些项目括起来以表是是一个tuple。这个圆括号是可选的,也就是说可以用以下两种方式定义一个tuple:</p> <p>t = \\’Adam\\’, \\’Lisa\\’, \\’Bart\\’<br /> t = (\\’Adam\\’, \\’Lisa\\’, \\’Bart\\’)<br /> 不过省掉那对圆括号不见得是什么好的习惯。另外当tuple只有一个项时,第一项之后必须有一个逗号,该情况下应该这样定义t = (\\’Adam\\’,)。这似乎是一个古怪的约束,但是假如没有这个逗号,不带括号定义的tuple就变成了t = \\’Adam\\’这明显具有二义性。</p> <p><strong>三、字典(Dictionary)</strong> </p> <p>字典可以看做是一组键-值(key-value)对的集合。键必须是唯一的,而每一个键关联着一个值。key必须是一个不可变的对象(如:tuple、数值型、字符串)。还要注意的是,在字典中的键值对并没有以任何方式进行排序。</p> <p>一个字典的定义应该照这样的格式d={key1 : value1, key2 : value2, key3 : value3}。键和值之间用冒号分隔,而键值对之间用逗号相隔,再用大括号将所有的键值对括起来。一些基本操作如下:</p> <pre class="brush:py;"> # 字典的定义 d = { \\\'Adam\\\': 95, \\\'Lisa\\\': 85, \\\'Bart\\\': 59 } # 通过键来获取值 print \\"Adam\\\'s score is\\", d[\\\'Adam\\\'] # 删除一个键值对 del d[\\\'Bart\\\'] # 遍历字典 for name, score in d.items(): print \\\'{0} is {1}\\\'.format(name, score) # 往字典中增加一个键值对 d[\\\'Paul\\\'] = 72 # 判断字典中是否存在某键,也可以用 if ab.has_key(\\\'Lisa\\\') if \\\'Lisa\\\' in d: print \\"Lisa\\\'s address is\\", d[\\\'Lisa\\\'] </pre> <p>输出的结果为:</p> <pre class="brush:plain;"> Adam\\\'s score is 95 Lisa is 85 Adam is 95 Lisa\\\'s address is 85 </pre> <p><strong>四、序列(Sequences)</strong> </p> <p>上面介绍的三种内建数据结构都是序列,索引操作是序列的一个基本操作。通过下标操作可以直接访问序列中的对象。上面虽然已经演示了下标操作——队列和元组用数字下标,字典用关键字下标。</p> <p>序列的下标是从0开始的,上面的例子中只使用了下标为正数的情况,其实下标还可以为负数,如-1,-2,-3…。负数下标表示的意义为反方向的位置,如class_list[-1]返回的是class_list的倒数第一个项目。</p> <p>序列不但支持负数下标还支持双下标,这对双下标表示一个区间。如class_list[0:3]返回的是一个class_list中从下标为1到下标为3之前的子序列副本。注意这个区间是一对半闭半开的区间。这种操作被称作切片操作(slicing operation)。如果切片操作的第二个下标超出了序列的范围,那么切片操作会到序列的末尾终止。切片操作中的两个下标都有默认值,第一个的默认值为0,第二个的大小为序列的长度。</p> <p>还可以给切片操作提供第三个参数,第三个参数代表切片操作的步长,它的默认值是1。步长代表了项与项之间的间距,比方name[0:10:3],返回的就是name中下标为0,3,6,9组成的子序列。</p> <p><strong>五、集合(Set)</strong> </p> <p>集合是无序简单对象的聚集。当你只关注一个对象是否存在于聚集中,而不管它存在的顺序或在出现的次数时,则适宜用集合。基本功能:判断是否是集合的成员、一个集合是不是另一个集合的子集、获取两个集合的交集等等。实例:</p> <pre class="brush:py;"> s = set([\\\'Adam\\\', \\\'Lisa\\\', \\\'Bart\\\', \\\'Paul\\\']) # 判断对象是否在集合中 if \\\'Bart\\\' in s: print \\"Bart is in ?\\", \\\'Bart\\\' in s # 使用copy函数来拷贝一个set sc = s.copy() # 往集合中添加对象 sc.add(\\\'Bill\\\') # 从集合中删除对象 sc.remove(\\\'Adam\\\') # 求两个集合的交集,也可以使用 s.intersection(sc) print s & sc </pre> <p>输出的结果:</p> <pre class="brush:py;"> Bart is in ? True set([\\\'Lisa\\\', \\\'Paul\\\', \\\'Bart\\\']) </pre></p>' |
_inputtime | '1690741950' |
_updatetime | '1690741950' |
tag | '字典, 列表, 序列, 元组, 集合, Python内建数据结构' |
kws | array ( '字典' => '/index.php?s=article&c=search&keyword=%E5%AD%97%E5%85%B8', '列表' => '/index.php?s=article&c=search&keyword=%E5%88%97%E8%A1%A8', '序列' => '/index.php?s=article&c=search&keyword=%E5%BA%8F%E5%88%97', '元组' => '/index.php?s=article&c=search&keyword=%E5%85%83%E7%BB%84', '集合' => '/index.php?s=article&c=search&keyword=%E9%9B%86%E5%90%88', 'Python内建数据结构' => '/index.php?s=article&c=search&keyword=Python%E5%86%85%E5%BB%BA%E6%95%B0%E6%8D%AE%E7%BB%93%E6%9E%84', ) |
tags | array ( '字典' => '/#没有找到对应的URL(关闭开发者模式将不会显示本词)', '列表' => '/#没有找到对应的URL(关闭开发者模式将不会显示本词)', '序列' => '/#没有找到对应的URL(关闭开发者模式将不会显示本词)', '元组' => '/#没有找到对应的URL(关闭开发者模式将不会显示本词)', '集合' => '/#没有找到对应的URL(关闭开发者模式将不会显示本词)', 'Python内建数据结构' => '/#没有找到对应的URL(关闭开发者模式将不会显示本词)', ) |
prev_page | array ( 'id' => '44846', 'catid' => '4', 'title' => 'Python连接mysql数据库的正确姿势', 'thumb' => NULL, 'keywords' => 'python连接mysql, Python连接数据库', 'description' => 'Python 数据库接口支持非常多的数据库,你可以选择适合你项目的数据库: GadFly mSQL MySQL PostgreSQL Microsoft SQL Server 2000 Informix Interbase Oracle Sybase 不同的数据库你需要下载不同的DB API模块,例如你需要访问Oracle数据库和Mysql数据,你需要下载Oracle和My', 'hits' => NULL, 'uid' => '1', 'author' => 'admin', 'status' => '9', 'url' => '/program/44846.html', 'link_id' => '0', 'tableid' => '0', 'inputip' => '', 'inputtime' => '1690741950', 'updatetime' => '1690741950', 'displayorder' => '0', ) |
next_page | array ( 'id' => '44848', 'catid' => '4', 'title' => '详解Python编程中基本的数学计算使用', 'thumb' => NULL, 'keywords' => 'python, 数学, 计算, 数学计算', 'description' => '数 在 Python 中,对数的规定比较简单,基本在小学数学水平即可理解。 那么,做为零基础学习这,也就从计算小学数学题目开始吧。因为从这里开始,数学的基础知识列位肯定过关了。 >>> 3 3 >>> 3333333333333333333333333333333333333333 33333333333333333', 'hits' => NULL, 'uid' => '1', 'author' => 'admin', 'status' => '9', 'url' => '/program/44848.html', 'link_id' => '0', 'tableid' => '0', 'inputip' => '', 'inputtime' => '1690741950', 'updatetime' => '1690741950', 'displayorder' => '0', ) |
meta_title | 'Python内建数据结构详解_程序人生_晓说杂谈' |
meta_keywords | '字典, 列表, 序列, 元组, 集合, Python内建数据结构' |
meta_description | '一、列表(List) list 是一个可以在其中存储一系列项目的数据结构。list 的项目之间需用逗号分开,并用一对中括号括将所有的项目括起来,以表明这是一个 list 。下例用以展示 list 的一些基本操作: # 定义一个 list 对象 class_list:class_list = [\\Michael\\, \\Bob\\' |
cat | array ( 'id' => '4', 'tid' => '1', 'pid' => '0', 'mid' => 'article', 'pids' => '0', 'name' => '程序人生', 'dirname' => 'program', 'pdirname' => '', 'child' => 0, 'disabled' => '0', 'ismain' => 1, 'childids' => 4, 'thumb' => '', 'show' => '1', 'content' => '', 'setting' => array ( 'edit' => 1, 'disabled' => 0, 'template' => array ( 'list' => 'list.html', 'show' => 'show.html', 'category' => 'category.html', 'search' => 'search.html', 'pagesize' => 20, 'mpagesize' => 20, ), 'seo' => array ( 'list_title' => '[第{page}页{join}]{name}{join}{SITE_NAME}', 'show_title' => '[第{page}页{join}]{title}{join}{catname}{join}{SITE_NAME}', ), 'getchild' => 0, 'urlrule' => 1, 'html' => 0, 'chtml' => 0, ), 'displayorder' => '0', 'is_ctable' => '0', 'pcatpost' => 0, 'topid' => '4', 'catids' => array ( 0 => '4', ), 'is_post' => 1, 'url' => 'https://www.wxx86.cn/program', 'total' => '请使用count标签查询', 'field' => array ( ), ) |
top | array ( 'id' => '4', 'tid' => '1', 'pid' => '0', 'mid' => 'article', 'pids' => '0', 'name' => '程序人生', 'dirname' => 'program', 'pdirname' => '', 'child' => 0, 'disabled' => '0', 'ismain' => 1, 'childids' => 4, 'thumb' => '', 'show' => '1', 'content' => '', 'setting' => array ( 'edit' => 1, 'disabled' => 0, 'template' => array ( 'list' => 'list.html', 'show' => 'show.html', 'category' => 'category.html', 'search' => 'search.html', 'pagesize' => 20, 'mpagesize' => 20, ), 'seo' => array ( 'list_title' => '[第{page}页{join}]{name}{join}{SITE_NAME}', 'show_title' => '[第{page}页{join}]{title}{join}{catname}{join}{SITE_NAME}', ), 'getchild' => 0, 'urlrule' => 1, 'html' => 0, 'chtml' => 0, ), 'displayorder' => '0', 'is_ctable' => '0', 'pcatpost' => 0, 'topid' => '4', 'catids' => array ( 0 => '4', ), 'is_post' => 1, 'url' => 'https://www.wxx86.cn/program', 'total' => '请使用count标签查询', 'field' => array ( ), ) |
pageid | 1 |
params | array ( 'catid' => '4', ) |
parent | array ( 'id' => '4', 'tid' => '1', 'pid' => '0', 'mid' => 'article', 'pids' => '0', 'name' => '程序人生', 'dirname' => 'program', 'pdirname' => '', 'child' => 0, 'disabled' => '0', 'ismain' => 1, 'childids' => 4, 'thumb' => '', 'show' => '1', 'content' => '', 'setting' => array ( 'edit' => 1, 'disabled' => 0, 'template' => array ( 'list' => 'list.html', 'show' => 'show.html', 'category' => 'category.html', 'search' => 'search.html', 'pagesize' => 20, 'mpagesize' => 20, ), 'seo' => array ( 'list_title' => '[第{page}页{join}]{name}{join}{SITE_NAME}', 'show_title' => '[第{page}页{join}]{title}{join}{catname}{join}{SITE_NAME}', ), 'getchild' => 0, 'urlrule' => 1, 'html' => 0, 'chtml' => 0, ), 'displayorder' => '0', 'is_ctable' => '0', 'pcatpost' => 0, 'topid' => '4', 'catids' => array ( 0 => '4', ), 'is_post' => 1, 'url' => 'https://www.wxx86.cn/program', 'total' => '请使用count标签查询', 'field' => array ( ), ) |
related | array ( 1 => array ( 'id' => '1', 'tid' => '1', 'pid' => '0', 'mid' => 'article', 'pids' => '0', 'name' => '科技分享', 'dirname' => 'tech', 'pdirname' => '', 'child' => 0, 'disabled' => '0', 'ismain' => 1, 'childids' => 1, 'thumb' => '', 'show' => '1', 'content' => '', 'setting' => array ( 'edit' => 1, 'disabled' => 0, 'template' => array ( 'list' => 'list.html', 'show' => 'show.html', 'category' => 'category.html', 'search' => 'search.html', 'pagesize' => 20, 'mpagesize' => 20, ), 'seo' => array ( 'list_title' => '[第{page}页{join}]{name}{join}{SITE_NAME}', 'show_title' => '[第{page}页{join}]{title}{join}{catname}{join}{SITE_NAME}', ), 'getchild' => 0, 'urlrule' => 1, 'html' => 0, 'chtml' => 0, ), 'displayorder' => '0', 'is_ctable' => '1', 'pcatpost' => 0, 'topid' => '1', 'catids' => array ( 0 => '1', ), 'is_post' => 1, 'url' => 'https://www.wxx86.cn/tech', 'total' => '请使用count标签查询', 'field' => array ( ), ), 2 => array ( 'id' => '2', 'tid' => '1', 'pid' => '0', 'mid' => 'article', 'pids' => '0', 'name' => '网络技术', 'dirname' => 'web', 'pdirname' => '', 'child' => 0, 'disabled' => '0', 'ismain' => 1, 'childids' => 2, 'thumb' => '', 'show' => '1', 'content' => '', 'setting' => array ( 'edit' => 1, 'disabled' => 0, 'template' => array ( 'list' => 'list.html', 'show' => 'show.html', 'category' => 'category.html', 'search' => 'search.html', 'pagesize' => 20, 'mpagesize' => 20, ), 'seo' => array ( 'list_title' => '[第{page}页{join}]{name}{join}{SITE_NAME}', 'show_title' => '[第{page}页{join}]{title}{join}{catname}{join}{SITE_NAME}', ), 'getchild' => 0, 'urlrule' => 1, 'html' => 0, 'chtml' => 0, ), 'displayorder' => '0', 'is_ctable' => '1', 'pcatpost' => 0, 'topid' => '2', 'catids' => array ( 0 => '2', ), 'is_post' => 1, 'url' => 'https://www.wxx86.cn/web', 'total' => '请使用count标签查询', 'field' => array ( ), ), 3 => array ( 'id' => '3', 'tid' => '1', 'pid' => '0', 'mid' => 'article', 'pids' => '0', 'name' => '硬件设备', 'dirname' => 'hardware', 'pdirname' => '', 'child' => 0, 'disabled' => '0', 'ismain' => 1, 'childids' => 3, 'thumb' => '', 'show' => '1', 'content' => '', 'setting' => array ( 'edit' => 1, 'disabled' => 0, 'template' => array ( 'list' => 'list.html', 'show' => 'show.html', 'category' => 'category.html', 'search' => 'search.html', 'pagesize' => 20, 'mpagesize' => 20, ), 'seo' => array ( 'list_title' => '[第{page}页{join}]{name}{join}{SITE_NAME}', 'show_title' => '[第{page}页{join}]{title}{join}{catname}{join}{SITE_NAME}', ), 'getchild' => 0, 'urlrule' => 1, 'html' => 0, 'chtml' => 0, ), 'displayorder' => '0', 'is_ctable' => '0', 'pcatpost' => 0, 'topid' => '3', 'catids' => array ( 0 => '3', ), 'is_post' => 1, 'url' => 'https://www.wxx86.cn/hardware', 'total' => '请使用count标签查询', 'field' => array ( ), ), 4 => array ( 'id' => '4', 'tid' => '1', 'pid' => '0', 'mid' => 'article', 'pids' => '0', 'name' => '程序人生', 'dirname' => 'program', 'pdirname' => '', 'child' => 0, 'disabled' => '0', 'ismain' => 1, 'childids' => 4, 'thumb' => '', 'show' => '1', 'content' => '', 'setting' => array ( 'edit' => 1, 'disabled' => 0, 'template' => array ( 'list' => 'list.html', 'show' => 'show.html', 'category' => 'category.html', 'search' => 'search.html', 'pagesize' => 20, 'mpagesize' => 20, ), 'seo' => array ( 'list_title' => '[第{page}页{join}]{name}{join}{SITE_NAME}', 'show_title' => '[第{page}页{join}]{title}{join}{catname}{join}{SITE_NAME}', ), 'getchild' => 0, 'urlrule' => 1, 'html' => 0, 'chtml' => 0, ), 'displayorder' => '0', 'is_ctable' => '0', 'pcatpost' => 0, 'topid' => '4', 'catids' => array ( 0 => '4', ), 'is_post' => 1, 'url' => 'https://www.wxx86.cn/program', 'total' => '请使用count标签查询', 'field' => array ( ), ), 5 => array ( 'id' => '5', 'tid' => '1', 'pid' => '0', 'mid' => 'article', 'pids' => '0', 'name' => '探索发现', 'dirname' => 'jinrong', 'pdirname' => '', 'child' => 0, 'disabled' => '0', 'ismain' => 1, 'childids' => 5, 'thumb' => '', 'show' => '1', 'content' => '', 'setting' => array ( 'edit' => 1, 'disabled' => 0, 'template' => array ( 'list' => 'list.html', 'show' => 'show.html', 'category' => 'category.html', 'search' => 'search.html', 'pagesize' => 20, 'mpagesize' => 20, ), 'seo' => array ( 'list_title' => '[第{page}页{join}]{name}{join}{SITE_NAME}', 'show_title' => '[第{page}页{join}]{title}{join}{catname}{join}{SITE_NAME}', ), 'getchild' => 0, 'urlrule' => 1, 'html' => 0, 'chtml' => 0, ), 'displayorder' => '0', 'is_ctable' => '0', 'pcatpost' => 0, 'topid' => '5', 'catids' => array ( 0 => '5', ), 'is_post' => 1, 'url' => 'https://www.wxx86.cn/jinrong', 'total' => '请使用count标签查询', 'field' => array ( ), ), 6 => array ( 'id' => '6', 'tid' => '1', 'pid' => '0', 'mid' => 'article', 'pids' => '0', 'name' => '机械加工', 'dirname' => 'jixie', 'pdirname' => '', 'child' => 0, 'disabled' => '0', 'ismain' => 1, 'childids' => 6, 'thumb' => '', 'show' => '1', 'content' => '', 'setting' => array ( 'edit' => 1, 'disabled' => 0, 'template' => array ( 'list' => 'list.html', 'show' => 'show.html', 'category' => 'category.html', 'search' => 'search.html', 'pagesize' => 20, 'mpagesize' => 20, ), 'seo' => array ( 'list_title' => '[第{page}页{join}]{name}{join}{SITE_NAME}', 'show_title' => '[第{page}页{join}]{title}{join}{catname}{join}{SITE_NAME}', ), 'getchild' => 0, 'urlrule' => 1, 'html' => 0, 'chtml' => 0, ), 'displayorder' => '0', 'is_ctable' => '0', 'pcatpost' => 0, 'topid' => '6', 'catids' => array ( 0 => '6', ), 'is_post' => 1, 'url' => 'https://www.wxx86.cn/jixie', 'total' => '请使用count标签查询', 'field' => array ( ), ), 7 => array ( 'id' => '7', 'tid' => '1', 'pid' => '0', 'mid' => 'article', 'pids' => '0', 'name' => '电商', 'dirname' => 'dianshang', 'pdirname' => '', 'child' => 0, 'disabled' => '0', 'ismain' => 1, 'childids' => 7, 'thumb' => '', 'show' => '1', 'content' => '', 'setting' => array ( 'edit' => 1, 'disabled' => 0, 'template' => array ( 'list' => 'list.html', 'show' => 'show.html', 'category' => 'category.html', 'search' => 'search.html', 'pagesize' => 20, 'mpagesize' => 20, ), 'seo' => array ( 'list_title' => '[第{page}页{join}]{name}{join}{SITE_NAME}', 'show_title' => '[第{page}页{join}]{title}{join}{catname}{join}{SITE_NAME}', ), 'getchild' => 0, 'urlrule' => 1, 'html' => 0, 'chtml' => 0, ), 'displayorder' => '0', 'is_ctable' => '0', 'pcatpost' => 0, 'topid' => '7', 'catids' => array ( 0 => '7', ), 'is_post' => 1, 'url' => 'https://www.wxx86.cn/dianshang', 'total' => '请使用count标签查询', 'field' => array ( ), ), 8 => array ( 'id' => '8', 'tid' => '1', 'pid' => '0', 'mid' => 'article', 'pids' => '0', 'name' => '其他', 'dirname' => 'other', 'pdirname' => '', 'child' => 0, 'disabled' => '0', 'ismain' => 1, 'childids' => 8, 'thumb' => '', 'show' => '1', 'content' => '', 'setting' => array ( 'edit' => 1, 'disabled' => 0, 'template' => array ( 'list' => 'list.html', 'show' => 'show.html', 'category' => 'category.html', 'search' => 'search.html', 'pagesize' => 20, 'mpagesize' => 20, ), 'seo' => array ( 'list_title' => '[第{page}页{join}]{name}{join}{SITE_NAME}', 'show_title' => '[第{page}页{join}]{title}{join}{catname}{join}{SITE_NAME}', ), 'getchild' => 0, 'urlrule' => 1, 'html' => 0, 'chtml' => 0, ), 'displayorder' => '0', 'is_ctable' => '0', 'pcatpost' => 0, 'topid' => '8', 'catids' => array ( 0 => '8', ), 'is_post' => 1, 'url' => 'https://www.wxx86.cn/other', 'total' => '请使用count标签查询', 'field' => array ( ), ), 9 => array ( 'id' => '9', 'tid' => '1', 'pid' => '0', 'mid' => 'article', 'pids' => '0', 'name' => '日常知识', 'dirname' => 'zhishi', 'pdirname' => '', 'child' => 0, 'disabled' => '0', 'ismain' => 1, 'childids' => 9, 'thumb' => '', 'show' => '1', 'content' => '', 'setting' => array ( 'edit' => 1, 'disabled' => 0, 'template' => array ( 'list' => 'list.html', 'show' => 'show.html', 'category' => 'category.html', 'search' => 'search.html', 'pagesize' => 20, 'mpagesize' => 20, ), 'seo' => array ( 'list_title' => '[第{page}页{join}]{name}{join}{SITE_NAME}', 'show_title' => '[第{page}页{join}]{title}{join}{catname}{join}{SITE_NAME}', ), 'getchild' => 0, 'urlrule' => 1, 'html' => 0, 'chtml' => 0, ), 'displayorder' => '0', 'is_ctable' => '0', 'pcatpost' => 0, 'topid' => '9', 'catids' => array ( 0 => '9', ), 'is_post' => 1, 'url' => 'https://www.wxx86.cn/zhishi', 'total' => '请使用count标签查询', 'field' => array ( ), ), 10 => array ( 'id' => '10', 'tid' => '1', 'pid' => '0', 'mid' => 'article', 'pids' => '0', 'name' => '每日语录', 'dirname' => 'yulu', 'pdirname' => '', 'child' => 0, 'disabled' => '0', 'ismain' => 1, 'childids' => 10, 'thumb' => '', 'show' => '1', 'content' => '', 'setting' => array ( 'edit' => 1, 'disabled' => 0, 'template' => array ( 'list' => 'list.html', 'show' => 'show.html', 'category' => 'category.html', 'search' => 'search.html', 'pagesize' => 20, 'mpagesize' => 20, ), 'seo' => array ( 'list_title' => '[第{page}页{join}]{name}{join}{SITE_NAME}', 'show_title' => '[第{page}页{join}]{title}{join}{catname}{join}{SITE_NAME}', ), 'getchild' => 0, 'urlrule' => 1, 'html' => 0, 'chtml' => 0, ), 'displayorder' => '0', 'is_ctable' => '0', 'pcatpost' => 0, 'topid' => '10', 'catids' => array ( 0 => '10', ), 'is_post' => 1, 'url' => 'https://www.wxx86.cn/yulu', 'total' => '请使用count标签查询', 'field' => array ( ), ), ) |
urlrule | '/program/44847-[page].html' |
fix_html_now_url | '' |
my_web_url | 'https://www.wxx86.cn/program/44847.html' |
get | array ( 'c' => 'show', 'id' => '44847', 'm' => 'index', ) |
domain_app.php | /webdata/wwwroot/www.wxx86.cn/cache/config/domain_app.php |
domain_client.php | /webdata/wwwroot/www.wxx86.cn/cache/config/domain_client.php |
site.php | /webdata/wwwroot/www.wxx86.cn/cache/config/site.php |
system.php | /webdata/wwwroot/www.wxx86.cn/cache/config/system.php |
_DS_webdata_DS_wwwroot_DS_www.wxx86.cn_DS_template_DS_pc_DS_default_DS_home_DS_footer.html.cache.php | /webdata/wwwroot/www.wxx86.cn/cache/template/_DS_webdata_DS_wwwroot_DS_www.wxx86.cn_DS_template_DS_pc_DS_default_DS_home_DS_footer.html.cache.php |
_DS_webdata_DS_wwwroot_DS_www.wxx86.cn_DS_template_DS_pc_DS_default_DS_home_DS_header.html.cache.php | /webdata/wwwroot/www.wxx86.cn/cache/template/_DS_webdata_DS_wwwroot_DS_www.wxx86.cn_DS_template_DS_pc_DS_default_DS_home_DS_header.html.cache.php |
_DS_webdata_DS_wwwroot_DS_www.wxx86.cn_DS_template_DS_pc_DS_default_DS_home_DS_show.html.cache.php | /webdata/wwwroot/www.wxx86.cn/cache/template/_DS_webdata_DS_wwwroot_DS_www.wxx86.cn_DS_template_DS_pc_DS_default_DS_home_DS_show.html.cache.php |
custom.php | /webdata/wwwroot/www.wxx86.cn/config/custom.php |
database.php | /webdata/wwwroot/www.wxx86.cn/config/database.php |
hooks.php | /webdata/wwwroot/www.wxx86.cn/config/hooks.php |
rewrite.php | /webdata/wwwroot/www.wxx86.cn/config/rewrite.php |
Filters.php | /webdata/wwwroot/www.wxx86.cn/dayrui/App/Autodraft/Config/Filters.php |
Hooks.php | /webdata/wwwroot/www.wxx86.cn/dayrui/App/Bdts/Config/Hooks.php |
Filters.php | /webdata/wwwroot/www.wxx86.cn/dayrui/App/Collapi/Config/Filters.php |
Hooks.php | /webdata/wwwroot/www.wxx86.cn/dayrui/App/Member/Config/Hooks.php |
Member.php | /webdata/wwwroot/www.wxx86.cn/dayrui/App/Member/Libraries/Member.php |
Member_auth.php | /webdata/wwwroot/www.wxx86.cn/dayrui/App/Member/Libraries/Member_auth.php |
Hooks.php | /webdata/wwwroot/www.wxx86.cn/dayrui/App/Mgc/Config/Hooks.php |
Category.php | /webdata/wwwroot/www.wxx86.cn/dayrui/App/Module/Action/Category.php |
Module.php | /webdata/wwwroot/www.wxx86.cn/dayrui/App/Module/Action/Module.php |
Auto.php | /webdata/wwwroot/www.wxx86.cn/dayrui/App/Module/Config/Auto.php |
Filters.php | /webdata/wwwroot/www.wxx86.cn/dayrui/App/Module/Config/Filters.php |
Hooks.php | /webdata/wwwroot/www.wxx86.cn/dayrui/App/Module/Config/Hooks.php |
Module_init.php | /webdata/wwwroot/www.wxx86.cn/dayrui/App/Module/Config/Module_init.php |
Run.php | /webdata/wwwroot/www.wxx86.cn/dayrui/App/Module/Config/Run.php |
Module.php | /webdata/wwwroot/www.wxx86.cn/dayrui/App/Module/Extends/Home/Module.php |
Content.php | /webdata/wwwroot/www.wxx86.cn/dayrui/App/Module/Models/Content.php |
Filters.php | /webdata/wwwroot/www.wxx86.cn/dayrui/App/Pay/Config/Filters.php |
Hooks.php | /webdata/wwwroot/www.wxx86.cn/dayrui/App/Spider/Config/Hooks.php |
Spider.php | /webdata/wwwroot/www.wxx86.cn/dayrui/App/Spider/Models/Spider.php |
Hooks.php | /webdata/wwwroot/www.wxx86.cn/dayrui/App/Tag/Config/Hooks.php |
Tag.php | /webdata/wwwroot/www.wxx86.cn/dayrui/App/Tag/Models/Tag.php |
Auto.php | /webdata/wwwroot/www.wxx86.cn/dayrui/App/Tpl/Config/Auto.php |
App.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/Config/App.php |
Autoload.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/Config/Autoload.php |
Cache.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/Config/Cache.php |
Constants.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/Config/Constants.php |
ContentSecurityPolicy.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/Config/ContentSecurityPolicy.php |
Cookie.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/Config/Cookie.php |
Database.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/Config/Database.php |
Events.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/Config/Events.php |
Exceptions.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/Config/Exceptions.php |
Feature.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/Config/Feature.php |
Filters.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/Config/Filters.php |
Kint.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/Config/Kint.php |
Logger.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/Config/Logger.php |
Modules.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/Config/Modules.php |
Routes.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/Config/Routes.php |
Routing.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/Config/Routing.php |
Services.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/Config/Services.php |
Toolbar.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/Config/Toolbar.php |
UserAgents.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/Config/UserAgents.php |
Cache.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/Extend/Cache.php |
CodeIgniter.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/Extend/CodeIgniter.php |
Controller.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/Extend/Controller.php |
Exceptions.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/Extend/Exceptions.php |
Hook.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/Extend/Hook.php |
Model.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/Extend/Model.php |
Request.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/Extend/Request.php |
Routes.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/Extend/Routes.php |
View.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/Extend/View.php |
Init.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/Init.php |
ResponseTrait.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/API/ResponseTrait.php |
Autoloader.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Autoloader/Autoloader.php |
FileLocator.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Autoloader/FileLocator.php |
CacheFactory.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Cache/CacheFactory.php |
CacheInterface.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Cache/CacheInterface.php |
BaseHandler.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Cache/Handlers/BaseHandler.php |
FileHandler.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Cache/Handlers/FileHandler.php |
ResponseCache.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Cache/ResponseCache.php |
CodeIgniter.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/CodeIgniter.php |
Common.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Common.php |
AutoloadConfig.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Config/AutoloadConfig.php |
BaseConfig.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Config/BaseConfig.php |
BaseService.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Config/BaseService.php |
Config.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Config/Config.php |
DotEnv.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Config/DotEnv.php |
Factories.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Config/Factories.php |
Factory.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Config/Factory.php |
Routing.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Config/Routing.php |
Services.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Config/Services.php |
Controller.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Controller.php |
CloneableCookieInterface.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Cookie/CloneableCookieInterface.php |
Cookie.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Cookie/Cookie.php |
CookieInterface.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Cookie/CookieInterface.php |
CookieStore.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Cookie/CookieStore.php |
BaseBuilder.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Database/BaseBuilder.php |
BaseConnection.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Database/BaseConnection.php |
BaseResult.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Database/BaseResult.php |
Config.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Database/Config.php |
ConnectionInterface.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Database/ConnectionInterface.php |
Database.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Database/Database.php |
Builder.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Database/MySQLi/Builder.php |
Connection.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Database/MySQLi/Connection.php |
Result.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Database/MySQLi/Result.php |
Query.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Database/Query.php |
QueryInterface.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Database/QueryInterface.php |
ResultInterface.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Database/ResultInterface.php |
Exceptions.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Debug/Exceptions.php |
Timer.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Debug/Timer.php |
Toolbar.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Debug/Toolbar.php |
BaseCollector.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Debug/Toolbar/Collectors/BaseCollector.php |
Database.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Debug/Toolbar/Collectors/Database.php |
Events.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Debug/Toolbar/Collectors/Events.php |
Files.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Debug/Toolbar/Collectors/Files.php |
Logs.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Debug/Toolbar/Collectors/Logs.php |
Routes.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Debug/Toolbar/Collectors/Routes.php |
Timers.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Debug/Toolbar/Collectors/Timers.php |
Views.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Debug/Toolbar/Collectors/Views.php |
Events.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Events/Events.php |
DebugToolbar.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Filters/DebugToolbar.php |
FilterInterface.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Filters/FilterInterface.php |
Filters.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Filters/Filters.php |
ContentSecurityPolicy.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/HTTP/ContentSecurityPolicy.php |
Header.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/HTTP/Header.php |
IncomingRequest.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/HTTP/IncomingRequest.php |
Message.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/HTTP/Message.php |
MessageInterface.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/HTTP/MessageInterface.php |
MessageTrait.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/HTTP/MessageTrait.php |
OutgoingRequest.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/HTTP/OutgoingRequest.php |
OutgoingRequestInterface.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/HTTP/OutgoingRequestInterface.php |
Request.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/HTTP/Request.php |
RequestInterface.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/HTTP/RequestInterface.php |
RequestTrait.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/HTTP/RequestTrait.php |
Response.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/HTTP/Response.php |
ResponseInterface.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/HTTP/ResponseInterface.php |
ResponseTrait.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/HTTP/ResponseTrait.php |
SiteURI.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/HTTP/SiteURI.php |
SiteURIFactory.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/HTTP/SiteURIFactory.php |
URI.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/HTTP/URI.php |
UserAgent.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/HTTP/UserAgent.php |
array_helper.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Helpers/array_helper.php |
kint_helper.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Helpers/kint_helper.php |
url_helper.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Helpers/url_helper.php |
Time.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/I18n/Time.php |
TimeTrait.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/I18n/TimeTrait.php |
Logger.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Log/Logger.php |
Modules.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Modules/Modules.php |
AutoRouter.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Router/AutoRouter.php |
AutoRouterInterface.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Router/AutoRouterInterface.php |
RouteCollection.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Router/RouteCollection.php |
RouteCollectionInterface.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Router/RouteCollectionInterface.php |
Router.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Router/Router.php |
RouterInterface.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Router/RouterInterface.php |
Superglobals.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Superglobals.php |
Escaper.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/ThirdParty/Escaper/Escaper.php |
FacadeInterface.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/ThirdParty/Kint/FacadeInterface.php |
Kint.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/ThirdParty/Kint/Kint.php |
AbstractRenderer.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/ThirdParty/Kint/Renderer/AbstractRenderer.php |
CliRenderer.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/ThirdParty/Kint/Renderer/CliRenderer.php |
RendererInterface.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/ThirdParty/Kint/Renderer/RendererInterface.php |
RichRenderer.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/ThirdParty/Kint/Renderer/RichRenderer.php |
TextRenderer.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/ThirdParty/Kint/Renderer/TextRenderer.php |
Utils.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/ThirdParty/Kint/Utils.php |
init.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/ThirdParty/Kint/init.php |
init_helpers.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/ThirdParty/Kint/init_helpers.php |
LogLevel.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/ThirdParty/PSR/Log/LogLevel.php |
LoggerInterface.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/ThirdParty/PSR/Log/LoggerInterface.php |
ConditionalTrait.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Traits/ConditionalTrait.php |
Show.php | /webdata/wwwroot/www.wxx86.cn/dayrui/Fcms/Control/Show.php |
Helper.php | /webdata/wwwroot/www.wxx86.cn/dayrui/Fcms/Core/Helper.php |
Hooks.php | /webdata/wwwroot/www.wxx86.cn/dayrui/Fcms/Core/Hooks.php |
Model.php | /webdata/wwwroot/www.wxx86.cn/dayrui/Fcms/Core/Model.php |
Phpcmf.php | /webdata/wwwroot/www.wxx86.cn/dayrui/Fcms/Core/Phpcmf.php |
Service.php | /webdata/wwwroot/www.wxx86.cn/dayrui/Fcms/Core/Service.php |
View.php | /webdata/wwwroot/www.wxx86.cn/dayrui/Fcms/Core/View.php |
Date.php | /webdata/wwwroot/www.wxx86.cn/dayrui/Fcms/Field/Date.php |
Editor.php | /webdata/wwwroot/www.wxx86.cn/dayrui/Fcms/Field/Editor.php |
File.php | /webdata/wwwroot/www.wxx86.cn/dayrui/Fcms/Field/File.php |
Text.php | /webdata/wwwroot/www.wxx86.cn/dayrui/Fcms/Field/Text.php |
Textarea.php | /webdata/wwwroot/www.wxx86.cn/dayrui/Fcms/Field/Textarea.php |
Init.php | /webdata/wwwroot/www.wxx86.cn/dayrui/Fcms/Init.php |
Cache.php | /webdata/wwwroot/www.wxx86.cn/dayrui/Fcms/Library/Cache.php |
Field.php | /webdata/wwwroot/www.wxx86.cn/dayrui/Fcms/Library/Field.php |
Input.php | /webdata/wwwroot/www.wxx86.cn/dayrui/Fcms/Library/Input.php |
Lang.php | /webdata/wwwroot/www.wxx86.cn/dayrui/Fcms/Library/Lang.php |
Router.php | /webdata/wwwroot/www.wxx86.cn/dayrui/Fcms/Library/Router.php |
Security.php | /webdata/wwwroot/www.wxx86.cn/dayrui/Fcms/Library/Security.php |
Seo.php | /webdata/wwwroot/www.wxx86.cn/dayrui/Fcms/Library/Seo.php |
Content.php | /webdata/wwwroot/www.wxx86.cn/dayrui/Fcms/Model/Content.php |
Member.php | /webdata/wwwroot/www.wxx86.cn/dayrui/Fcms/Model/Member.php |
Version.php | /webdata/wwwroot/www.wxx86.cn/dayrui/My/Config/Version.php |
lang.php | /webdata/wwwroot/www.wxx86.cn/public/api/language/zh-cn/lang.php |
index.php | /webdata/wwwroot/www.wxx86.cn/public/index.php |
File: | /webdata/wwwroot/www.wxx86.cn/dayrui/Fcms/Control/Show.php |
App: | / |
Controller: | show |
Method: | index |
URI: | show/index |
URL: | https://www.wxx86.cn/program/44847.html |
Time | Event Name | Times Called |
---|---|---|
20.11 ms | pre_system | 1 |
0.49 ms | dbquery | 6 |
Action | Datetime | Status | Method | URL | Content-Type | Is AJAX? |
---|---|---|---|---|---|---|
2025-06-06 12:05:17.855354 | 200 | GET | https://www.wxx86.cn/index.php/program/44847.html | text/html; charset=UTF-8 | No | |
2025-06-06 12:02:43.045076 | 200 | GET | https://www.wxx86.cn/index.php/tech/137740.html | text/html; charset=UTF-8 | No | |
2025-06-06 12:02:26.136132 | 200 | GET | https://www.wxx86.cn/index.php/web/3856.html | text/html; charset=UTF-8 | No | |
2025-06-06 12:01:44.430142 | 200 | GET | https://www.wxx86.cn/index.php/tech/728344.html | text/html; charset=UTF-8 | No | |
2025-06-06 12:01:19.056725 | 200 | GET | https://www.wxx86.cn/index.php/web/839305.html | text/html; charset=UTF-8 | No | |
2025-06-06 12:00:43.589100 | 200 | GET | https://www.wxx86.cn/index.php/tech/86430.html | text/html; charset=UTF-8 | No | |
2025-06-06 12:00:22.105204 | 200 | GET | https://www.wxx86.cn/index.php/tech/111545.html | text/html; charset=UTF-8 | No | |
2025-06-06 12:00:05.620709 | 200 | GET | https://www.wxx86.cn/index.php/tech/459377.html | text/html; charset=UTF-8 | No | |
2025-06-06 11:59:02.538748 | 200 | GET | https://www.wxx86.cn/index.php/tech/98597.html | text/html; charset=UTF-8 | No | |
2025-06-06 11:58:58.506797 | 200 | GET | https://www.wxx86.cn/index.php/tech/619047.html | text/html; charset=UTF-8 | No | |
2025-06-06 11:58:54.636869 | 200 | GET | https://www.wxx86.cn/index.php/tech/87691.html | text/html; charset=UTF-8 | No | |
2025-06-06 11:58:52.942394 | 200 | GET | https://www.wxx86.cn/index.php/tech/238184.html | text/html; charset=UTF-8 | No | |
2025-06-06 11:58:50.748326 | 200 | GET | https://www.wxx86.cn/index.php/tech/193846.html | text/html; charset=UTF-8 | No | |
2025-06-06 11:58:45.980422 | 200 | GET | https://www.wxx86.cn/index.php/tech/793976.html | text/html; charset=UTF-8 | No | |
2025-06-06 11:58:41.395945 | 200 | GET | https://www.wxx86.cn/index.php/tech/198915.html | text/html; charset=UTF-8 | No | |
2025-06-06 11:58:39.330727 | 200 | GET | https://www.wxx86.cn/index.php/program/41598.html | text/html; charset=UTF-8 | No | |
2025-06-06 11:58:38.920011 | 200 | GET | https://www.wxx86.cn/index.php/tech/794890.html | text/html; charset=UTF-8 | No | |
2025-06-06 11:58:34.787132 | 200 | GET | https://www.wxx86.cn/index.php/tech/82649.html | text/html; charset=UTF-8 | No | |
2025-06-06 11:58:30.670417 | 200 | GET | https://www.wxx86.cn/index.php/tech/69719.html | text/html; charset=UTF-8 | No | |
2025-06-06 11:58:26.382243 | 200 | GET | https://www.wxx86.cn/index.php/tech/260700.html | text/html; charset=UTF-8 | No |
Session doesn't seem to be active.
c | show |
id | 44847 |
m | index |
Priority | u=0, i |
Accept-Encoding | gzip, deflate, br, zstd |
Sec-Fetch-Dest | document |
Sec-Fetch-User | ?1 |
Sec-Fetch-Mode | navigate |
Sec-Fetch-Site | none |
Accept | text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7 |
User-Agent | Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com) |
Upgrade-Insecure-Requests | 1 |
Sec-Ch-Ua-Platform | "Windows" |
Sec-Ch-Ua-Mobile | ?0 |
Sec-Ch-Ua | "Chromium";v="130", "HeadlessChrome";v="130", "Not?A_Brand";v="99" |
Cache-Control | no-cache |
Pragma | no-cache |
Host | www.wxx86.cn |
Cache-Control | no-store, max-age=0, no-cache |
Content-Type | text/html; charset=UTF-8 |
CodeIgniter Version: | 4.4.7 |
PHP Version: | 8.0.26 |
PHP SAPI: | fpm-fcgi |
Environment: | development |
Base URL: | https://www.wxx86.cn/ |
Timezone: | PRC |
Locale: | zh-cn |
Content Security Policy Enabled: | No |