<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <title>晓云网络 - 导读 - 最新回复</title>
    <link>https://bbs.zp68.com/forum.php?mod=guide&amp;view=new</link>
    <description>最新回复</description>
    <copyright>Copyright(C) 晓云网络</copyright>
    <generator>Discuz! Board by Comsenz Inc.</generator>
    <lastBuildDate>Wed, 13 May 2026 11:53:06 +0000</lastBuildDate>
    <ttl>30</ttl>
    <image>
      <url>https://bbs.zp68.com/static/image/common/logo_88_31.gif</url>
      <title>晓云网络</title>
      <link>https://bbs.zp68.com/</link>
    </image>
    <item>
      <title>数据库中文问题</title>
      <link>https://bbs.zp68.com/forum.php?mod=viewthread&amp;tid=28</link>
      <description><![CDATA[]]></description>
      <category>ThinkPHP</category>
      <author>admin</author>
      <pubDate>Wed, 03 Feb 2021 01:04:47 +0000</pubDate>
    </item>
    <item>
      <title>详细解析Thinkphp5.1源码执行入口文件index.php运行过程</title>
      <link>https://bbs.zp68.com/forum.php?mod=viewthread&amp;tid=27</link>
      <description><![CDATA[详细解析Thinkphp5.1源码执行入口文件index.php运行过程运行了public目录下的index.php文件后，tp的运行整个运行过程的解析入口文件index.php代码如下：]]></description>
      <category>PHP编程</category>
      <author>yxrj</author>
      <pubDate>Thu, 10 Dec 2020 01:11:00 +0000</pubDate>
    </item>
    <item>
      <title>win系统 root密码找回</title>
      <link>https://bbs.zp68.com/forum.php?mod=viewthread&amp;tid=26</link>
      <description><![CDATA[1.cmd进入 D:\\host\\MySQL\\bin 目录

2.执行 mysqld-nt --skip-grant-tables; 或 mysqld --skip-grant-tables;   进入安全模式


3.重新打开一个cmd命令提示符窗口执行 mysql -uroot -p;  然后提示输入密码，不用输入密码，直接按回车键。


4.输入以下命令开始修改超级 ...]]></description>
      <category>MySql</category>
      <author>admin</author>
      <pubDate>Mon, 02 Nov 2020 03:54:33 +0000</pubDate>
    </item>
    <item>
      <title>在亚马逊云EC2上创建root用户，并使用root用户登录</title>
      <link>https://bbs.zp68.com/forum.php?mod=viewthread&amp;tid=25</link>
      <description><![CDATA[今天开始研究亚马逊的云主机EC2，遇到了一个问题，我需要在EC2上安装tomcat，但是yum命令只能是root用户才可以运行，而EC2默认是以ec2-user用户登录的，所以需要切换到root用户登录，特将研究成果公布如下：

    1、根据官网提供的方法登录连接到EC2服务器（官网推荐wi ...]]></description>
      <category>亚马逊服务器</category>
      <author>yxrj</author>
      <pubDate>Fri, 08 May 2020 00:17:49 +0000</pubDate>
    </item>
    <item>
      <title>ThinkPHP5—路由(route)详解</title>
      <link>https://bbs.zp68.com/forum.php?mod=viewthread&amp;tid=24</link>
      <description><![CDATA[ThinkPHP5——route(路由)的详解　　路由在框架中的作用打个比方的话，路由好比是WEB应用的总调度室，对于访问的URL地址，路由可以拒绝或者接受某个URL请求，并进行分发调度，而且还有一个副作用是因为路由规则可以随意定义，因此可以让你的URL请求地址更优雅，因为不会 ...]]></description>
      <category>PHP编程</category>
      <author>yxrj</author>
      <pubDate>Fri, 17 Apr 2020 11:42:21 +0000</pubDate>
    </item>
    <item>
      <title>MySQL字符串的拼接、截取、替换、查找位置</title>
      <link>https://bbs.zp68.com/forum.php?mod=viewthread&amp;tid=23</link>
      <description><![CDATA[MySQL字符串的拼接、截取、替换、查找位置。

常用的字符串函数：

函数]]></description>
      <category>MySql</category>
      <author>yxrj</author>
<enclosure url="/forum/返回连接参数产生的字符串，一个或多个待拼接的内容，任意一个为NULL则返回值为NULL。
CONCAT_WS(x,s1,s2,...)" length="返回多个字符串拼接之后的字符串，每个字符串之间有一个x ..." type="image/jpeg" />      <pubDate>Sun, 12 Apr 2020 05:02:06 +0000</pubDate>
    </item>
    <item>
      <title>MYSQL性能优化之子查询</title>
      <link>https://bbs.zp68.com/forum.php?mod=viewthread&amp;tid=22</link>
      <description><![CDATA[有时候表大的情况下直接查询会影响查询性能。我们可以先查询出来索引，再利用索引子查询记录。这样可以大大提升性能。

SELECT fl.*,u.username FROM  files fl,users u  WHERE  fl.file_id IN( SELECT file_id FROM (SELECT file_id FROM `files` WHERE  is_del=0 ORDE ...]]></description>
      <category>MySql</category>
      <author>yxrj</author>
      <pubDate>Sun, 12 Apr 2020 03:06:47 +0000</pubDate>
    </item>
    <item>
      <title>MySQL配置主主同步(master-master)</title>
      <link>https://bbs.zp68.com/forum.php?mod=viewthread&amp;tid=21</link>
      <description><![CDATA[MySQL主主同步跟MySQL主从同步类似，只是再另一台上反向再做一次主从同步。
只不过MySQL的配置文件有些地方需要注意一下。
实验环境



名称
IP地址
系统版本
MySQL版本




testA
192.168.1.235
CentOS 6.5
mysql-5.7.13


testB
192.168.1.237
CentOS 6.5
mysql-5.7.1 ...]]></description>
      <category>MySql</category>
      <author>yxrj</author>
      <pubDate>Thu, 26 Mar 2020 02:50:37 +0000</pubDate>
    </item>
    <item>
      <title>MySQL两主（多主）多从架构配置</title>
      <link>https://bbs.zp68.com/forum.php?mod=viewthread&amp;tid=20</link>
      <description><![CDATA[一、角色划分1、MySQL数据库规划我现在的环境是：zhdy04和zhdy05已经做好了主主架构配置，现在需要的是把两台或者多台从服务器与主一一同步。如果搭建主主环境，参照此链接！主机名IP 地址角色Mysql_server_idzhdy04192.168.230.145masterA145zhdy05192.168.230.146mast ...]]></description>
      <category>MySql</category>
      <author>yxrj</author>
      <pubDate>Thu, 26 Mar 2020 02:22:04 +0000</pubDate>
    </item>
    <item>
      <title>JS格式化文件大小 单位：Bytes、KB、MB、GB</title>
      <link>https://bbs.zp68.com/forum.php?mod=viewthread&amp;tid=18</link>
      <description><![CDATA[方法一：bytes自适应转换到KB,MB,GB 1 /// &amp;lt;summary&amp;gt;
 2 /// 格式化文件大小的JS方法
 3 /// &amp;lt;/summary&amp;gt;
 4 /// &amp;lt;param name=\&quot;filesize\&quot;&amp;gt;文件的大小,传入的是一个bytes为单位的参数&amp;lt;/param&amp;gt;
 5 /// &amp;lt;returns&amp;gt;格式化后的值&amp;lt;/returns&amp;gt;
 6 function renderSize(value){ 7   ...]]></description>
      <category>JS</category>
      <author>yxrj</author>
      <pubDate>Sun, 22 Mar 2020 01:52:00 +0000</pubDate>
    </item>
    <item>
      <title>MySql-CPU过高处理-开启MySQL慢查询日志</title>
      <link>https://bbs.zp68.com/forum.php?mod=viewthread&amp;tid=17</link>
      <description><![CDATA[开启MySQL慢查询日志sudo nano /etc/mysql/my.cnflog_slow_queries = /var/log/mysql/slow.sqllong_query_time = 0.5log-queries-not-using-indexes #不使用索引,这句可以不用sudo service mysql restartshow variables like \&quot;%slow%\&quot;; 查看慢查询相关配置SELECT SLEEP( ...]]></description>
      <category>MySql</category>
      <author>yxrj</author>
      <pubDate>Sat, 21 Mar 2020 11:18:28 +0000</pubDate>
    </item>
    <item>
      <title>PHP中private、public、protected的区别详解</title>
      <link>https://bbs.zp68.com/forum.php?mod=viewthread&amp;tid=16</link>
      <description><![CDATA[先简单粗俗的描述下：public 表示全局，类内部外部子类都可以访问；private表示私有的，只有本类内部可以使用；protected表示受保护的，只有本类或子类或父类中可以访问；再啰嗦的解释下：一、public: 公有类型在子类中可以通过 self::属性名(或方法名)&amp;nbsp;&amp;nbsp;调用 ...]]></description>
      <category>PHP编程</category>
      <author>admin</author>
      <pubDate>Fri, 20 Mar 2020 13:01:34 +0000</pubDate>
    </item>
    <item>
      <title>PHP判断{函数/类/方法/属性}是否存在</title>
      <link>https://bbs.zp68.com/forum.php?mod=viewthread&amp;tid=14</link>
      <description><![CDATA[1.php判断系统函数或自己写的函数是否存在bool function_exists ( string $function_name ) 判断函数是否已经定义，例如：if(function_exists(\'curl_init\')){
    curl_init();
}else{
    echo \'not function curl_init\';
}2.php判断类是否存在bool class_exists ( str ...]]></description>
      <category>PHP编程</category>
      <author>yxrj</author>
      <pubDate>Fri, 20 Mar 2020 11:26:06 +0000</pubDate>
    </item>
    <item>
      <title>晓云论坛管理制度</title>
      <link>https://bbs.zp68.com/forum.php?mod=viewthread&amp;tid=12</link>
      <description><![CDATA[第一章总则
第1条为建立正常的讨论机制，规范论坛管理，保护广大聊友的正当权益，真正体现
公正、公平、公开的原则，为聊友创造一个良好的讨论娱乐环境，特制定本制度，社区管理制度。
第2条本论坛内的言论、信息、资料必须符合地方政府法规、国家法律和国际法律的
有关 ...]]></description>
      <category>『公告|事务|指南|合作』</category>
      <author>admin</author>
      <pubDate>Sun, 02 Feb 2020 04:52:09 +0000</pubDate>
    </item>
    <item>
      <title>有违法行为的欢迎举报</title>
      <link>https://bbs.zp68.com/forum.php?mod=viewthread&amp;tid=11</link>
      <description><![CDATA[核实存在违法行为直接封号处理]]></description>
      <category>『建议|疑问|投诉|举报』</category>
      <author>admin</author>
      <pubDate>Sun, 02 Feb 2020 02:41:13 +0000</pubDate>
    </item>
    <item>
      <title>关于志诚网盘和个人网盘</title>
      <link>https://bbs.zp68.com/forum.php?mod=viewthread&amp;tid=10</link>
      <description><![CDATA[2个网盘相似度高。管理起来不方便，计划2个网盘合并成一个。]]></description>
      <category>个人网盘</category>
      <author>admin</author>
      <pubDate>Sun, 02 Feb 2020 02:39:42 +0000</pubDate>
    </item>
    <item>
      <title>个人网盘</title>
      <link>https://bbs.zp68.com/forum.php?mod=viewthread&amp;tid=9</link>
      <description><![CDATA[个人网盘内容审核人员招募中]]></description>
      <category>个人网盘</category>
      <author>admin</author>
      <pubDate>Sun, 02 Feb 2020 02:36:56 +0000</pubDate>
    </item>
    <item>
      <title>志诚网盘</title>
      <link>https://bbs.zp68.com/forum.php?mod=viewthread&amp;tid=8</link>
      <description><![CDATA[志诚网盘内容审核人员招募中]]></description>
      <category>志诚网盘</category>
      <author>admin</author>
      <pubDate>Sun, 02 Feb 2020 02:36:12 +0000</pubDate>
    </item>
    <item>
      <title>智能家庭中控系统</title>
      <link>https://bbs.zp68.com/forum.php?mod=viewthread&amp;tid=7</link>
      <description><![CDATA[智能家庭中控系统，目前已经开发完毕。处于测试阶段]]></description>
      <category>晓云物联</category>
      <author>admin</author>
      <pubDate>Sun, 02 Feb 2020 02:34:02 +0000</pubDate>
    </item>
    <item>
      <title>晓云API系统目前处于开发阶段</title>
      <link>https://bbs.zp68.com/forum.php?mod=viewthread&amp;tid=6</link>
      <description><![CDATA[晓云API系统目前处于开发阶段]]></description>
      <category>晓云API</category>
      <author>admin</author>
      <pubDate>Sun, 02 Feb 2020 02:32:58 +0000</pubDate>
    </item>
    <item>
      <title>晓云网盘开发进度</title>
      <link>https://bbs.zp68.com/forum.php?mod=viewthread&amp;tid=4</link>
      <description><![CDATA[2020-02-02
批量上传文件已经完成。]]></description>
      <category>晓云网盘</category>
      <author>admin</author>
<enclosure url="https://bbs.zp68.com/data/attachment/forum/202002/02/104250erm4kqlh3a44ufvf.png" length="34585" type="image/jpeg" />      <pubDate>Sun, 02 Feb 2020 02:28:40 +0000</pubDate>
    </item>
    <item>
      <title>晓云论坛管理细则</title>
      <link>https://bbs.zp68.com/forum.php?mod=viewthread&amp;tid=2</link>
      <description><![CDATA[如果您登录晓云论坛，意味着您将遵守以下规则，并服从本论坛的统一管理。

一、有违反以下情况的，版主、版副或被授权管理员必须及时将帖子删除，并立即通报网管：
1、违反中华人民共和国宪法和法律、违反改革开放和四项基本原则的；
2、危害国家安全，泄露国家秘密，煽 ...]]></description>
      <category>『公告|事务|指南|合作』</category>
      <author>admin</author>
      <pubDate>Sun, 02 Feb 2020 01:41:36 +0000</pubDate>
    </item>
    <item>
      <title>晓云论坛管理细则</title>
      <link>https://bbs.zp68.com/forum.php?mod=viewthread&amp;tid=1</link>
      <description><![CDATA[如果您登录晓云论坛，意味着您将遵守以下规则，并服从本论坛的统一管理。

一、有违反以下情况的，版主、版副或被授权管理员必须及时将帖子删除，并立即通报网管：
1、违反中华人民共和国宪法和法律、违反改革开放和四项基本原则的；
2、危害国家安全，泄露国家秘密，煽 ...]]></description>
      <category>『公告|事务|指南|合作』</category>
      <author>admin</author>
      <pubDate>Sun, 02 Feb 2020 01:19:07 +0000</pubDate>
    </item>
  </channel>
</rss>