当前位置:首页>python>第2周 Python 精通学习计划-AI/大模型测试工程师

第2周 Python 精通学习计划-AI/大模型测试工程师

  • 2026-02-05 23:37:48
第2周 Python 精通学习计划-AI/大模型测试工程师

📌 学习资源具体推荐

书籍(按优先级)

  1. 《Python Crash Course》第2版 - 重点看前11章

  2. 《利用Python进行数据分析》 - Pandas部分

  3. 《流畅的Python》 - 作为进阶参考

在线练习平台

  1. LeetCode:Python题库(简单难度)

  2. HackerRank:Python技能练习

  3. Codewars:通过挑战学习

  4. 牛客网:国内面试题练习

实用工具

  1. Jupyter Notebook:交互式学习

  2. VS Code + Python插件

  3. Anaconda:环境管理

  4. Git:代码版本控制(提前接触)


🎯 学习效果检验

第1周末检查点

  • 能独立编写50行以上的Python脚本

  • 理解列表、字典、循环、函数

  • 会用requests获取API数据

  • 能读写JSON和CSV文件

第2周末检查点

  • 能使用Pandas进行基本数据分析

  • 理解面向对象编程概念

  • 完成完整的天气数据分析项目

  • 能解决LeetCode简单难度的算法题


💡 学习建议

  1. 每日坚持:每天至少写100行代码

  2. 不懂就问:善用Stack Overflow、知乎、CSDN

  3. 代码重构:第二天回顾前一天的代码并优化

  4. 项目驱动:学完每个知识点就做一个相关的小项目

  5. 记录问题:建立自己的错误解决方案库

第2周:数据处理与综合项目

Day 8-9:Pandas基础(约6小时)

学习内容

  1. Series和DataFrame的创建与操作

  2. 数据读取与写入(CSV、Excel)

  3. 数据筛选与排序

  4. 基本统计函数

实践案例

python

# 4. 学生成绩分析系统import pandas as pdimport numpy as np# 创建示例数据data ={'姓名':['张三','李四','王五','赵六','钱七'],'数学':[85,92,78,88,95],'英语':[88,76,92,85,80],'物理':[90,85,88,92,78],'班级':['A','B','A','B','A']}df = pd.DataFrame(data)# 数据分析操作print("=== 基础信息 ===")print(f"数据形状:{df.shape}")print(f"\n数据类型:")print(df.dtypes)print("\n=== 统计分析 ===")df['总分']= df[['数学','英语','物理']].sum(axis=1)df['平均分']= df[['数学','英语','物理']].mean(axis=1).round(2)print(f"各科平均分:")print(df[['数学','英语','物理']].mean())print(f"\n班级平均分:")print(df.groupby('班级')[['数学','英语','物理','总分']].mean())print("\n=== 数据筛选 ===")# 筛选数学90分以上的学生math_90_plus = df[df['数学']>=90]print("数学90分以上的学生:")print(math_90_plus[['姓名','数学','总分']])# 总分排名df['排名']= df['总分'].rank(ascending=False, method='min').astype(int)print("\n总分排名:")print(df.sort_values('排名')[['姓名','总分','平均分','排名']])

Day 10-11:NumPy基础与面向对象(约6小时)

学习内容

  1. NumPy数组创建与操作

  2. 数组运算与广播

  3. 面向对象编程基础

  4. 类、继承、多态

实践案例

python

# 5. 矩阵计算器(结合NumPy和OOP)import numpy as npclassMatrixCalculator:def__init__(self, matrix1, matrix2=None):"""初始化矩阵计算器"""         self.matrix1 = np.array(matrix1)         self.matrix2 = np.array(matrix2)if matrix2 isnotNoneelseNonedefadd(self):"""矩阵加法"""if self.matrix2 isNone:raise ValueError("需要第二个矩阵进行加法运算")if self.matrix1.shape != self.matrix2.shape:raise ValueError("矩阵维度不匹配")return self.matrix1 + self.matrix2         defmultiply(self):"""矩阵乘法"""if self.matrix2 isNone:raise ValueError("需要第二个矩阵进行乘法运算")if self.matrix1.shape[1]!= self.matrix2.shape[0]:raise ValueError("矩阵维度不匹配,无法相乘")return np.dot(self.matrix1, self.matrix2)deftranspose(self):"""转置矩阵"""return self.matrix1.T         defdeterminant(self):"""计算行列式(仅限方阵)"""if self.matrix1.shape[0]!= self.matrix1.shape[1]:raise ValueError("只有方阵才能计算行列式")return np.linalg.det(self.matrix1)defget_info(self):"""获取矩阵信息"""return{'shape': self.matrix1.shape,'dtype': self.matrix1.dtype,'min': self.matrix1.min(),'max': self.matrix1.max(),'mean': self.matrix1.mean()}# 使用示例matrix_a =[[1,2,3],[4,5,6]]matrix_b =[[7,8],[9,10],[11,12]]calc = MatrixCalculator(matrix_a, matrix_b)print("矩阵A信息:", calc.get_info())print("\n矩阵乘法结果:")print(calc.multiply())# 创建一个子类:高级矩阵计算器classAdvancedMatrixCalculator(MatrixCalculator):def__init__(self, matrix1, matrix2=None):super().__init__(matrix1, matrix2)defeigenvalues(self):"""计算特征值(仅限方阵)"""if self.matrix1.shape[0]!= self.matrix1.shape[1]:raise ValueError("只有方阵才能计算特征值")return np.linalg.eigvals(self.matrix1)defsvd_decomposition(self):"""奇异值分解"""         U, s, V = np.linalg.svd(self.matrix1)return{'U': U,'singular_values': s,'V': V}# 测试高级功能square_matrix =[[4,2],[1,3]]adv_calc = AdvancedMatrixCalculator(square_matrix)print("\n方阵特征值:", adv_calc.eigenvalues())

Day 12-13:综合项目实战(约8小时)

完整项目:天气数据爬虫与分析系统

python

# 6. 完整的天气数据爬虫与分析系统import requestsimport pandas as pdimport jsonimport osfrom datetime import datetimeimport matplotlib.pyplot as pltimport numpy as npclassWeatherAnalysisSystem:def__init__(self, api_key=None):         self.api_key = api_key or"your_api_key_here"         self.base_url ="http://api.openweathermap.org/data/2.5"         self.data_dir ="weather_data"# 创建数据目录ifnot os.path.exists(self.data_dir):             os.makedirs(self.data_dir)deffetch_multiple_cities(self, cities, save_csv=True):"""获取多个城市的天气数据"""         all_data =[]for city in cities:print(f"正在获取 {city} 的天气数据...")             data = self._fetch_single_city(city)if data:# 提取关键信息                 city_data ={'city': city,'timestamp': datetime.now().strftime("%Y-%m-%d %H:%M:%S"),'temperature': data['main']['temp'],'feels_like': data['main']['feels_like'],'humidity': data['main']['humidity'],'pressure': data['main']['pressure'],'wind_speed': data['wind']['speed'],'weather': data['weather'][0]['main'],'description': data['weather'][0]['description']}                 all_data.append(city_data)# 创建DataFrame         df = pd.DataFrame(all_data)if save_csv andnot df.empty:             filename =f"weather_{datetime.now().strftime('%Y%m%d')}.csv"             filepath = os.path.join(self.data_dir, filename)             df.to_csv(filepath, index=False, encoding='utf-8-sig')print(f"数据已保存到:{filepath}")return df         def_fetch_single_city(self, city):"""获取单个城市的天气数据"""         url =f"{self.base_url}/weather"         params ={'q': city,'appid': self.api_key,'units':'metric','lang':'zh_cn'}try:             response = requests.get(url, params=params, timeout=10)             response.raise_for_status()return response.json()except Exception as e:print(f"获取 {city} 数据失败:{e}")returnNonedefanalyze_data(self, df):"""分析天气数据"""if df.empty:print("没有数据可分析")returnNoneprint("=== 天气数据分析报告 ===")print(f"数据时间范围:{df['timestamp'].iloc[0]}")print(f"城市数量:{len(df)}")# 基本统计print(f"\n温度统计:")print(df['temperature'].describe())print(f"\n湿度统计:")print(df['humidity'].describe())# 找出最热和最冷的城市         hottest = df.loc[df['temperature'].idxmax()]         coldest = df.loc[df['temperature'].idxmin()]print(f"\n最热的城市:{hottest['city']} ({hottest['temperature']}°C)")print(f"最冷的城市:{coldest['city']} ({coldest['temperature']}°C)")# 按天气类型分组         weather_groups = df.groupby('weather').size()print(f"\n天气类型分布:")print(weather_groups)return{'temperature_stats': df['temperature'].describe().to_dict(),'hottest_city': hottest.to_dict(),'coldest_city': coldest.to_dict(),'weather_distribution': weather_groups.to_dict()}defvisualize_data(self, df, save_plot=True):"""可视化天气数据"""if df.empty:return                  fig, axes = plt.subplots(2,2, figsize=(12,10))# 1. 温度条形图         ax1 = axes[0,0]         cities = df['city']         temps = df['temperature']                  bars = ax1.bar(cities, temps, color=plt.cm.coolwarm(np.array(temps)/max(temps)))         ax1.set_xlabel('城市')         ax1.set_ylabel('温度 (°C)')         ax1.set_title('各城市温度对比')         ax1.tick_params(axis='x', rotation=45)# 在条形上添加温度值for bar, temp inzip(bars, temps):             height = bar.get_height()             ax1.text(bar.get_x()+ bar.get_width()/2., height +0.1,f'{temp:.1f}', ha='center', va='bottom')# 2. 湿度散点图         ax2 = axes[0,1]         ax2.scatter(df['temperature'], df['humidity'], alpha=0.6, s=100)         ax2.set_xlabel('温度 (°C)')         ax2.set_ylabel('湿度 (%)')         ax2.set_title('温度-湿度关系')# 为每个点添加城市标签for i, city inenumerate(df['city']):             ax2.annotate(city,(df['temperature'].iloc[i], df['humidity'].iloc[i]),                         xytext=(5,5), textcoords='offset points')# 3. 天气类型饼图         ax3 = axes[1,0]         weather_counts = df['weather'].value_counts()         ax3.pie(weather_counts.values, labels=weather_counts.index, autopct='%1.1f%%')         ax3.set_title('天气类型分布')# 4. 风速箱型图         ax4 = axes[1,1]         weather_types = df['weather'].unique()                  wind_data =[]         labels =[]for weather in weather_types:             wind_speeds = df[df['weather']== weather]['wind_speed']iflen(wind_speeds)>0:                 wind_data.append(wind_speeds)                 labels.append(weather)                  ax4.boxplot(wind_data, labels=labels)         ax4.set_xlabel('天气类型')         ax4.set_ylabel('风速 (m/s)')         ax4.set_title('不同天气类型的风速分布')         ax4.tick_params(axis='x', rotation=45)                  plt.tight_layout()if save_plot:             plot_path = os.path.join(self.data_dir,f"weather_analysis_{datetime.now().strftime('%Y%m%d_%H%M%S')}.png")             plt.savefig(plot_path, dpi=300, bbox_inches='tight')print(f"图表已保存到:{plot_path}")                  plt.show()defgenerate_report(self, analysis_results, df):"""生成分析报告"""ifnot analysis_results:return                  report =f"""         ====== 天气数据分析报告 ======         生成时间:{datetime.now().strftime('%Y-%m-%d %H:%M:%S')}         分析城市数量:{len(df)}                  一、温度概况         平均温度:{analysis_results['temperature_stats']['mean']:.1f}°C         最高温度:{analysis_results['temperature_stats']['max']:.1f}°C ({analysis_results['hottest_city']['city']})         最低温度:{analysis_results['temperature_stats']['min']:.1f}°C ({analysis_results['coldest_city']['city']})                  二、天气分布        {chr(10).join([f'{k}{v}个城市'for k, v in analysis_results['weather_distribution'].items()])}                  三、建议         """# 根据分析结果给出建议         avg_temp = analysis_results['temperature_stats']['mean']if avg_temp >25:             report +="1. 天气较热,建议穿短袖,注意防晒\n"elif avg_temp <10:             report +="1. 天气较冷,建议穿厚外套,注意保暖\n"else:             report +="1. 天气适宜,适合户外活动\n"# 保存报告         report_path = os.path.join(self.data_dir,f"weather_report_{datetime.now().strftime('%Y%m%d')}.txt")withopen(report_path,'w', encoding='utf-8')as f:             f.write(report)print(f"报告已保存到:{report_path}")return report# 主程序defmain():# 初始化系统     weather_system = WeatherAnalysisSystem()# 定义要查询的城市列表     cities =["Beijing","Shanghai","Guangzhou","Shenzhen","Chengdu","Wuhan","Xi'an","Nanjing","Hangzhou","Chongqing"]# 1. 获取数据print("开始获取天气数据...")     df = weather_system.fetch_multiple_cities(cities, save_csv=True)if df.empty:print("无法获取数据,请检查网络或API密钥")return# 2. 分析数据print("\n开始分析数据...")     analysis_results = weather_system.analyze_data(df)# 3. 可视化print("\n生成可视化图表...")     weather_system.visualize_data(df, save_plot=True)# 4. 生成报告print("\n生成分析报告...")     report = weather_system.generate_report(analysis_results, df)print("\n=== 任务完成 ===")print(f"成功处理了 {len(df)} 个城市的天气数据")if __name__ =="__main__":     main()

Day 14:复习与扩展(约3小时)

复习内容

  1. 回顾所有代码,确保理解每一行

  2. 尝试修改项目:添加新功能或优化现有代码

  3. 在LeetCode完成10道Python相关题目

  4. 整理个人代码库和笔记

最新文章

随机文章

基本 文件 流程 错误 SQL 调试
  1. 请求信息 : 2026-02-08 02:57:37 HTTP/2.0 GET : https://f.mffb.com.cn/a/469532.html
  2. 运行时间 : 0.114140s [ 吞吐率:8.76req/s ] 内存消耗:4,545.75kb 文件加载:140
  3. 缓存信息 : 0 reads,0 writes
  4. 会话信息 : SESSION_ID=054d7624d522bb1fe6cf9433b7eec1a1
  1. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/public/index.php ( 0.79 KB )
  2. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/autoload.php ( 0.17 KB )
  3. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/composer/autoload_real.php ( 2.49 KB )
  4. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/composer/platform_check.php ( 0.90 KB )
  5. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/composer/ClassLoader.php ( 14.03 KB )
  6. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/composer/autoload_static.php ( 4.90 KB )
  7. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-helper/src/helper.php ( 8.34 KB )
  8. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-validate/src/helper.php ( 2.19 KB )
  9. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/helper.php ( 1.47 KB )
  10. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/stubs/load_stubs.php ( 0.16 KB )
  11. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Exception.php ( 1.69 KB )
  12. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-container/src/Facade.php ( 2.71 KB )
  13. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/symfony/deprecation-contracts/function.php ( 0.99 KB )
  14. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/symfony/polyfill-mbstring/bootstrap.php ( 8.26 KB )
  15. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/symfony/polyfill-mbstring/bootstrap80.php ( 9.78 KB )
  16. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/symfony/var-dumper/Resources/functions/dump.php ( 1.49 KB )
  17. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-dumper/src/helper.php ( 0.18 KB )
  18. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/symfony/var-dumper/VarDumper.php ( 4.30 KB )
  19. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/App.php ( 15.30 KB )
  20. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-container/src/Container.php ( 15.76 KB )
  21. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/psr/container/src/ContainerInterface.php ( 1.02 KB )
  22. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/app/provider.php ( 0.19 KB )
  23. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Http.php ( 6.04 KB )
  24. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-helper/src/helper/Str.php ( 7.29 KB )
  25. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Env.php ( 4.68 KB )
  26. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/app/common.php ( 0.03 KB )
  27. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/helper.php ( 18.78 KB )
  28. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Config.php ( 5.54 KB )
  29. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/app.php ( 0.95 KB )
  30. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/cache.php ( 0.78 KB )
  31. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/console.php ( 0.23 KB )
  32. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/cookie.php ( 0.56 KB )
  33. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/database.php ( 2.48 KB )
  34. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/facade/Env.php ( 1.67 KB )
  35. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/filesystem.php ( 0.61 KB )
  36. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/lang.php ( 0.91 KB )
  37. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/log.php ( 1.35 KB )
  38. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/middleware.php ( 0.19 KB )
  39. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/route.php ( 1.89 KB )
  40. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/session.php ( 0.57 KB )
  41. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/trace.php ( 0.34 KB )
  42. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/view.php ( 0.82 KB )
  43. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/app/event.php ( 0.25 KB )
  44. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Event.php ( 7.67 KB )
  45. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/app/service.php ( 0.13 KB )
  46. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/app/AppService.php ( 0.26 KB )
  47. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Service.php ( 1.64 KB )
  48. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Lang.php ( 7.35 KB )
  49. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/lang/zh-cn.php ( 13.70 KB )
  50. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/initializer/Error.php ( 3.31 KB )
  51. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/initializer/RegisterService.php ( 1.33 KB )
  52. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/services.php ( 0.14 KB )
  53. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/service/PaginatorService.php ( 1.52 KB )
  54. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/service/ValidateService.php ( 0.99 KB )
  55. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/service/ModelService.php ( 2.04 KB )
  56. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-trace/src/Service.php ( 0.77 KB )
  57. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Middleware.php ( 6.72 KB )
  58. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/initializer/BootService.php ( 0.77 KB )
  59. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/Paginator.php ( 11.86 KB )
  60. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-validate/src/Validate.php ( 63.20 KB )
  61. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/Model.php ( 23.55 KB )
  62. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/model/concern/Attribute.php ( 21.05 KB )
  63. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/model/concern/AutoWriteData.php ( 4.21 KB )
  64. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/model/concern/Conversion.php ( 6.44 KB )
  65. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/model/concern/DbConnect.php ( 5.16 KB )
  66. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/model/concern/ModelEvent.php ( 2.33 KB )
  67. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/model/concern/RelationShip.php ( 28.29 KB )
  68. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-helper/src/contract/Arrayable.php ( 0.09 KB )
  69. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-helper/src/contract/Jsonable.php ( 0.13 KB )
  70. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/model/contract/Modelable.php ( 0.09 KB )
  71. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Db.php ( 2.88 KB )
  72. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/DbManager.php ( 8.52 KB )
  73. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Log.php ( 6.28 KB )
  74. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Manager.php ( 3.92 KB )
  75. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/psr/log/src/LoggerTrait.php ( 2.69 KB )
  76. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/psr/log/src/LoggerInterface.php ( 2.71 KB )
  77. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Cache.php ( 4.92 KB )
  78. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/psr/simple-cache/src/CacheInterface.php ( 4.71 KB )
  79. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-helper/src/helper/Arr.php ( 16.63 KB )
  80. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/cache/driver/File.php ( 7.84 KB )
  81. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/cache/Driver.php ( 9.03 KB )
  82. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/contract/CacheHandlerInterface.php ( 1.99 KB )
  83. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/app/Request.php ( 0.09 KB )
  84. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Request.php ( 55.78 KB )
  85. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/app/middleware.php ( 0.25 KB )
  86. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Pipeline.php ( 2.61 KB )
  87. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-trace/src/TraceDebug.php ( 3.40 KB )
  88. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/middleware/SessionInit.php ( 1.94 KB )
  89. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Session.php ( 1.80 KB )
  90. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/session/driver/File.php ( 6.27 KB )
  91. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/contract/SessionHandlerInterface.php ( 0.87 KB )
  92. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/session/Store.php ( 7.12 KB )
  93. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Route.php ( 23.73 KB )
  94. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/route/RuleName.php ( 5.75 KB )
  95. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/route/Domain.php ( 2.53 KB )
  96. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/route/RuleGroup.php ( 22.43 KB )
  97. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/route/Rule.php ( 26.95 KB )
  98. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/route/RuleItem.php ( 9.78 KB )
  99. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/route/app.php ( 1.72 KB )
  100. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/facade/Route.php ( 4.70 KB )
  101. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/route/dispatch/Controller.php ( 4.74 KB )
  102. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/route/Dispatch.php ( 10.44 KB )
  103. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/app/controller/Index.php ( 4.81 KB )
  104. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/app/BaseController.php ( 2.05 KB )
  105. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/facade/Db.php ( 0.93 KB )
  106. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/connector/Mysql.php ( 5.44 KB )
  107. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/PDOConnection.php ( 52.47 KB )
  108. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/Connection.php ( 8.39 KB )
  109. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/ConnectionInterface.php ( 4.57 KB )
  110. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/builder/Mysql.php ( 16.58 KB )
  111. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/Builder.php ( 24.06 KB )
  112. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/BaseBuilder.php ( 27.50 KB )
  113. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/Query.php ( 15.71 KB )
  114. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/BaseQuery.php ( 45.13 KB )
  115. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/concern/TimeFieldQuery.php ( 7.43 KB )
  116. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/concern/AggregateQuery.php ( 3.26 KB )
  117. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/concern/ModelRelationQuery.php ( 20.07 KB )
  118. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/concern/ParamsBind.php ( 3.66 KB )
  119. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/concern/ResultOperation.php ( 7.01 KB )
  120. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/concern/WhereQuery.php ( 19.37 KB )
  121. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/concern/JoinAndViewQuery.php ( 7.11 KB )
  122. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/concern/TableFieldInfo.php ( 2.63 KB )
  123. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/concern/Transaction.php ( 2.77 KB )
  124. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/log/driver/File.php ( 5.96 KB )
  125. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/contract/LogHandlerInterface.php ( 0.86 KB )
  126. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/log/Channel.php ( 3.89 KB )
  127. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/event/LogRecord.php ( 1.02 KB )
  128. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-helper/src/Collection.php ( 16.47 KB )
  129. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/facade/View.php ( 1.70 KB )
  130. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/View.php ( 4.39 KB )
  131. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Response.php ( 8.81 KB )
  132. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/response/View.php ( 3.29 KB )
  133. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Cookie.php ( 6.06 KB )
  134. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-view/src/Think.php ( 8.38 KB )
  135. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/contract/TemplateHandlerInterface.php ( 1.60 KB )
  136. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-template/src/Template.php ( 46.61 KB )
  137. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-template/src/template/driver/File.php ( 2.41 KB )
  138. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-template/src/template/contract/DriverInterface.php ( 0.86 KB )
  139. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/runtime/temp/067d451b9a0c665040f3f1bdd3293d68.php ( 11.98 KB )
  140. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-trace/src/Html.php ( 4.42 KB )
  1. CONNECT:[ UseTime:0.000441s ] mysql:host=127.0.0.1;port=3306;dbname=f_mffb;charset=utf8mb4
  2. SHOW FULL COLUMNS FROM `fenlei` [ RunTime:0.000662s ]
  3. SELECT * FROM `fenlei` WHERE `fid` = 0 [ RunTime:0.000268s ]
  4. SELECT * FROM `fenlei` WHERE `fid` = 63 [ RunTime:0.000506s ]
  5. SHOW FULL COLUMNS FROM `set` [ RunTime:0.000681s ]
  6. SELECT * FROM `set` [ RunTime:0.015608s ]
  7. SHOW FULL COLUMNS FROM `article` [ RunTime:0.000636s ]
  8. SELECT * FROM `article` WHERE `id` = 469532 LIMIT 1 [ RunTime:0.003373s ]
  9. UPDATE `article` SET `lasttime` = 1770490657 WHERE `id` = 469532 [ RunTime:0.006608s ]
  10. SELECT * FROM `fenlei` WHERE `id` = 66 LIMIT 1 [ RunTime:0.000337s ]
  11. SELECT * FROM `article` WHERE `id` < 469532 ORDER BY `id` DESC LIMIT 1 [ RunTime:0.005882s ]
  12. SELECT * FROM `article` WHERE `id` > 469532 ORDER BY `id` ASC LIMIT 1 [ RunTime:0.002011s ]
  13. SELECT * FROM `article` WHERE `id` < 469532 ORDER BY `id` DESC LIMIT 10 [ RunTime:0.003465s ]
  14. SELECT * FROM `article` WHERE `id` < 469532 ORDER BY `id` DESC LIMIT 10,10 [ RunTime:0.000794s ]
  15. SELECT * FROM `article` WHERE `id` < 469532 ORDER BY `id` DESC LIMIT 20,10 [ RunTime:0.005008s ]
0.115766s