<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <title>老宋 - 技术</title>
    <link>https://www.24jq.com/portal.php?mod=list&amp;catid=45</link>
    <description>Latest 20 articles of 技术</description>
    <copyright>Copyright(C) 老宋</copyright>
    <generator>Discuz! Board by Comsenz Inc.</generator>
    <lastBuildDate>Wed, 11 Mar 2026 06:21:35 +0000</lastBuildDate>
    <ttl>60</ttl>
    <image>
      <url>https://www.24jq.com/static/image/common/logo_88_31.gif</url>
      <title>老宋</title>
      <link>https://www.24jq.com/</link>
    </image>
    <item>
      <title>discuz 的全局变量数组 $_G</title>
      <link>https://www.24jq.com/article-1203-1.html</link>
      <description><![CDATA[在 Discuz! 论坛程序里，$_G是一个至关重要的全局变量数组，它在整个应用程序中都能被访问。这个数组整合了诸多与当前用户、会话、环境相关的信息，开发人员借助它能够获取系统状态以及处理用户数据。下面为你详细介 ... ...]]></description>
      <category>技术</category>
      <author>herosrx</author>
      <pubDate>Fri, 16 May 2025 20:04:00 +0000</pubDate>
    </item>
    <item>
      <title>dz页面内嵌 导致的页面其他模块样式冲突如何解决</title>
      <link>https://www.24jq.com/article-1202-1.html</link>
      <description><![CDATA[在 Discuz! 模板系统里，!--{block return}-- 和 !--{/block}-- 这两个标签起着关键作用，它们主要用于定义和引入可复用的代码片段。下面详细介绍其功能和用法： 核心功能 代码复用：借助这对标签，能够把模板里重复 ... ...]]></description>
      <category>技术</category>
      <author>herosrx</author>
      <pubDate>Wed, 14 May 2025 19:01:00 +0000</pubDate>
    </item>
    <item>
      <title>python2 与  python3 的区别？</title>
      <link>https://www.24jq.com/article-1201-1.html</link>
      <description><![CDATA[目录1. python2 和 python3 的区别2. 输入输出方面的差异：：2.1 输出的差异：2.2 输入的差异：2.3 range和xrange2.4 异常捕获的差异：3. 关于新式类和经典类的区别3.1 关于使用type（）函数查看实例类型的区别1. py ... ...]]></description>
      <category>技术</category>
      <author>herosrx</author>
      <pubDate>Wed, 19 Feb 2025 03:31:29 +0000</pubDate>
    </item>
    <item>
      <title>scrapy架构图</title>
      <link>https://www.24jq.com/article-1199-1.html</link>
      <description><![CDATA[]]></description>
      <category>技术</category>
      <author>herosrx</author>
<enclosure url="https://www.24jq.com/data/attachment/portal/202502/15/124929q9buuwvyiowk9r9n.jpg" length="34411" type="image/jpeg" />
      <pubDate>Sat, 15 Feb 2025 04:49:33 +0000</pubDate>
    </item>
    <item>
      <title>discuz 修改文章阅读次数</title>
      <link>https://www.24jq.com/article-1197-1.html</link>
      <description><![CDATA[UPDATE pre_portal_article_count SET viewnum= 500 WHERE aid = 100;]]></description>
      <category>技术</category>
      <author>herosrx</author>
      <pubDate>Mon, 10 Feb 2025 06:34:48 +0000</pubDate>
    </item>
    <item>
      <title>将mysql自增主键颠倒顺序方法</title>
      <link>https://www.24jq.com/article-1194-1.html</link>
      <description><![CDATA[-- 第一种将自增主键颠倒顺序方法-- 删除字段ALTER TABLE your_table_name DROP COLUMN id;-- 重新添加字段ALTER TABLE your_table_nameADD COLUMN id INT;-- 添加属性ALTER TABLEyour_table_nameMODIFY COLUMN id I ...]]></description>
      <category>技术</category>
      <author>herosrx</author>
      <pubDate>Sat, 04 Jan 2025 21:54:39 +0000</pubDate>
    </item>
    <item>
      <title>nohup命令</title>
      <link>https://www.24jq.com/article-1192-1.html</link>
      <description><![CDATA[1. **概念** - `nohup`是“no hang up”的缩写，它用于在Linux系统中运行一个命令，使得这个命令在用户退出登录或者终端关闭后仍能继续在后台运行。这在执行一些长时间运行的任务（如大型数据处理、服务器监控脚本等 ... ...]]></description>
      <category>技术</category>
      <author>herosrx</author>
      <pubDate>Tue, 10 Dec 2024 04:11:49 +0000</pubDate>
    </item>
    <item>
      <title>Mysql删除数据后，如何让自增id从1开始</title>
      <link>https://www.24jq.com/article-1191-1.html</link>
      <description><![CDATA[第一种方法：DELETE FROM your_table;     #删除表中所有记录ALTER TABLE your_table AUTO_INCREMENT = 1; #重置自增计数器第二种方法：TRUNCATE TABLE your_table;  清空表，并使得计数最大值为1 ...]]></description>
      <category>技术</category>
      <author>herosrx</author>
      <pubDate>Mon, 04 Nov 2024 04:21:36 +0000</pubDate>
    </item>
    <item>
      <title>MySQL如何添加表或字段的备注信息</title>
      <link>https://www.24jq.com/article-1190-1.html</link>
      <description><![CDATA[在MySQL中，可以使用注释语法来添加表或字段的备注信息。以下是两种方式： 添加表的备注信息： ALTER TABLE table_name COMMENT \'table comment\';  添加字段的备注信息： ALTER TABLE table_name MODIFY column_name ... ...]]></description>
      <category>技术</category>
      <author>herosrx</author>
      <pubDate>Thu, 08 Aug 2024 08:25:01 +0000</pubDate>
    </item>
    <item>
      <title>Discuz!全局变量详细列表  $_G</title>
      <link>https://www.24jq.com/article-1189-1.html</link>
      <description><![CDATA[$_G 保存了 Discuz! 中所有的预处理数据缓存能够很好的提高程序的性能，一些配置数据没必要每次都查询数据库，只要在修改了的时候更新下缓存即可。Discuz! 中所有的缓存保存在 $_G 中$_G 会员信息数据$_G 用户 uid$_ ... ...]]></description>
      <category>技术</category>
      <author>herosrx</author>
      <pubDate>Fri, 26 Jul 2024 00:45:14 +0000</pubDate>
    </item>
    <item>
      <title>discuz 数据库操作方法</title>
      <link>https://www.24jq.com/article-1188-1.html</link>
      <description><![CDATA[函数功能DB::table($tablename)获取正确带前缀的表名，转换数据库句柄，DB::delete($tablename, 条件,条数限制)删除表中的数据DB::insert($tablename, 数据(数组),是否返回插入ID,是否是替换式,是否silent)插入数据  ... ...]]></description>
      <category>技术</category>
      <author>herosrx</author>
      <pubDate>Thu, 25 Jul 2024 09:40:00 +0000</pubDate>
    </item>
    <item>
      <title>DB::query    DB::fetch  DB::fetch_all  DB::result_first  DB::fetch_first 区别</title>
      <link>https://www.24jq.com/article-1187-1.html</link>
      <description><![CDATA[在数据库操作的上下文中，这些函数或方法（DB::query,DB::fetch,DB::fetch_all,DB::result_first,DB::fetch_first）通常用于与数据库进行交互，但它们的确切名称和行为可能会根据不同的数据库抽象层（如PDO, Eloquen ... ...]]></description>
      <category>技术</category>
      <author>herosrx</author>
      <pubDate>Thu, 25 Jul 2024 09:35:00 +0000</pubDate>
    </item>
    <item>
      <title>discuz常用函数&amp;方法&amp;变量总结</title>
      <link>https://www.24jq.com/article-1186-1.html</link>
      <description><![CDATA[常用函数：showmessage()函数 ：该函数就是我们最常见的页面提示跳转，比如登陆、退出、个人信息修改提交等等。函数原型 ：showmessage($message, $url_forward = \'\', $extra = \'\', $forwardtype = 0)复制代码函数解 ... ...]]></description>
      <category>技术</category>
      <author>herosrx</author>
      <pubDate>Fri, 19 Jul 2024 05:51:18 +0000</pubDate>
    </item>
    <item>
      <title>Discuz!全局变量详细列表</title>
      <link>https://www.24jq.com/article-1185-1.html</link>
      <description><![CDATA[［A］字母组$action………………………………………………………………………操作$adminid…………………………………………………………………….管理级别$adminemail………………………………………………………… ... ...]]></description>
      <category>技术</category>
      <author>herosrx</author>
      <pubDate>Thu, 18 Jul 2024 08:25:00 +0000</pubDate>
    </item>
    <item>
      <title>discuz全局变量$_G</title>
      <link>https://www.24jq.com/article-1184-1.html</link>
      <description><![CDATA[(1)全局变量系统篇$_G = 当前登录UID$_G = 当前登录用户名$_G = 当前登录ID管理组ID$_G = 当前登录ID用户组ID$_G = 客户端cookie$_G = 当前登录ID的【FORMHASH】 主要用于表单提交$_G = 当前活动时间$_G = 131704244 ... ...]]></description>
      <category>技术</category>
      <author>herosrx</author>
      <pubDate>Thu, 18 Jul 2024 08:24:12 +0000</pubDate>
    </item>
    <item>
      <title>如果jquery和本地js有冲突怎么办?</title>
      <link>https://www.24jq.com/article-1183-1.html</link>
      <description><![CDATA[在使用 jQuery 与系统中的其他代码（可能是原生 JavaScript、其他库或框架）时，可能会遇到冲突（conflicts）问题。这通常是因为多个库或框架试图同时占用全局变量$或jQuery。为了解决这个问题，jQuery 提供了一些方 ... ...]]></description>
      <category>技术</category>
      <author>herosrx</author>
      <pubDate>Thu, 18 Jul 2024 00:17:34 +0000</pubDate>
    </item>
    <item>
      <title>Discuz x 插件模板如何实现DIY</title>
      <link>https://www.24jq.com/article-1182-1.html</link>
      <description><![CDATA[Discuz系统模板里的DIY功能相信使用过该系统的人都非常熟悉了，那么怎么在开发插件的时候再插件的模块里面实现DIY功能呢，本文将介绍具体的实现方法：示例插件：nimba_diypage/nimba_diypage/page.inc.phpnimba_diyp ... ...]]></description>
      <category>技术</category>
      <author>herosrx</author>
      <pubDate>Wed, 17 Jul 2024 14:49:41 +0000</pubDate>
    </item>
    <item>
      <title>httprunner 性能测试指标</title>
      <link>https://www.24jq.com/article-1180-1.html</link>
      <description><![CDATA[指标名称指标说明指标类型标签统计间隔num_requestsThe number of requestsGaugeVecname、method3snum_failuresThe number of failuresGaugeVecname、method3smedian_response_timeThe median response timeGaugeVec ...]]></description>
      <category>技术</category>
      <author>herosrx</author>
      <pubDate>Wed, 03 Jul 2024 08:58:00 +0000</pubDate>
    </item>
    <item>
      <title>grafana如何汉化？</title>
      <link>https://www.24jq.com/article-1178-1.html</link>
      <description><![CDATA[打开Grafana的配置文件grafana.ini（或grafana.ini）。在配置文件中找到部分。在部分中添加以下行： ; 默认语言设置为中文 ; 如果您希望使用其他语言，请将zh-CN替换为相应的语言代码 default_locale = zh-CN还可以 ... ...]]></description>
      <category>技术</category>
      <author>herosrx</author>
<enclosure url="https://www.24jq.com/data/attachment/portal/202406/27/080805jtgggfy32tn3w4e7.png" length="43796" type="image/jpeg" />
      <pubDate>Thu, 27 Jun 2024 00:08:51 +0000</pubDate>
    </item>
    <item>
      <title>grafana 默认密码是多少 grafana用户名密码</title>
      <link>https://www.24jq.com/article-1177-1.html</link>
      <description><![CDATA[默认用户名：admin默认密码为：admin首次登录会提示修改；]]></description>
      <category>技术</category>
      <author>herosrx</author>
      <pubDate>Wed, 26 Jun 2024 23:41:41 +0000</pubDate>
    </item>
  </channel>
</rss>