<?xml version="1.0" encoding="utf-8" ?><rss version="2.0"><channel><title><![CDATA[MDwalu的博客]]></title><description><![CDATA[]]></description><link>https://blog.csdn.net/MDwalu</link><language>zh-cn</language><generator>https://blog.csdn.net/</generator><copyright><![CDATA[Copyright &copy; MDwalu]]></copyright><item><title><![CDATA[C++[未定义行为/undefined][未确定行为/unspecified][实现定义行为/implementation-defined]]]></title><link>https://blog.csdn.net/MDwalu/article/details/126437070</link><guid>https://blog.csdn.net/MDwalu/article/details/126437070</guid><author>MDwalu</author><pubDate>Sat, 20 Aug 2022 10:53:00 +0800</pubDate><description><![CDATA[未定义形态为
未确定行为
实现定义行为]]></description><category></category></item><item><title><![CDATA[使用代理后，雷鸟连接qq邮箱]]></title><link>https://blog.csdn.net/MDwalu/article/details/122195927</link><guid>https://blog.csdn.net/MDwalu/article/details/122195927</guid><author>MDwalu</author><pubDate>Tue, 28 Dec 2021 16:10:29 +0800</pubDate><description><![CDATA[使用代理后，雷鸟连接qq邮箱]]></description><category></category></item><item><title><![CDATA[package中的__init__文件]]></title><link>https://blog.csdn.net/MDwalu/article/details/119649886</link><guid>https://blog.csdn.net/MDwalu/article/details/119649886</guid><author>MDwalu</author><pubDate>Thu, 12 Aug 2021 18:23:28 +0800</pubDate><description><![CDATA[package中的__init__文件
我们可以通过__init__文件，实现函数或者类的方便的调用


package中的__init__没有添加任何东西，hello.py中有一个函数
需要用如下方法才能引用hello.py中的函数。
from show.hello import hello
hello()




在__init__中添加hello()这个函数
# 代码如下所示
from .hello import hello

此时可以使用更加简洁的引用方式
from show import hell]]></description><category></category></item><item><title><![CDATA[python pymssql浮点型数据写入SQL Server]]></title><link>https://blog.csdn.net/MDwalu/article/details/115801280</link><guid>https://blog.csdn.net/MDwalu/article/details/115801280</guid><author>MDwalu</author><pubDate>Sat, 17 Apr 2021 20:41:15 +0800</pubDate><description><![CDATA[python使用pymssql库将浮点型数据写入SQL Server时，要用%s作为占位符，用%f会报错，TMD，谁会想到这个原因。

]]></description><category></category></item><item><title><![CDATA[php 连接SQLServer，汉字乱码，更改utf-8格式]]></title><link>https://blog.csdn.net/MDwalu/article/details/115801222</link><guid>https://blog.csdn.net/MDwalu/article/details/115801222</guid><author>MDwalu</author><pubDate>Sat, 17 Apr 2021 20:37:37 +0800</pubDate><description><![CDATA[上四张图





]]></description><category></category></item><item><title><![CDATA[numpy+opencv显示多张图片]]></title><link>https://blog.csdn.net/MDwalu/article/details/115579828</link><guid>https://blog.csdn.net/MDwalu/article/details/115579828</guid><author>MDwalu</author><pubDate>Sat, 10 Apr 2021 16:55:41 +0800</pubDate><description><![CDATA[使用numpy的hstack函数合并图片
图片本身是数组，实际是合并两个数组
import cv2 as cv
import numpy as np

path1 = r"C:\Users\dell\Desktop\01.png"
path2 = r"C:\Users\dell\Desktop\02.png"
# 读取图片
img1 = cv.imread(path1, cv.IMREAD_UNCHANGED)
img2 = cv.imread(path2, cv.IMREAD_UNCHANGED)

# ]]></description><category></category></item><item><title><![CDATA[phpstorm+xdebug进行php调试]]></title><link>https://blog.csdn.net/MDwalu/article/details/115579663</link><guid>https://blog.csdn.net/MDwalu/article/details/115579663</guid><author>MDwalu</author><pubDate>Sat, 10 Apr 2021 16:38:50 +0800</pubDate><description><![CDATA[php没有自带的debug工具，需要另外安装。
在安装的过程中，看了很多篇博客，都没有成功，直到看了这篇博客
我遇到的问题就两个
1.php.ini更改之后，需要重启电脑
2.不知道phpstorm进行调试的时候，那些框框里面的地址需要填啥
看一下上面的那篇博客吧，这真的是我看过的讲的最清楚的了

...]]></description><category></category></item><item><title><![CDATA[windows下安装php和apache]]></title><link>https://blog.csdn.net/MDwalu/article/details/114793609</link><guid>https://blog.csdn.net/MDwalu/article/details/114793609</guid><author>MDwalu</author><pubDate>Sun, 14 Mar 2021 17:05:07 +0800</pubDate><description><![CDATA[windows下安装php和apache
1.安装PHP
从官网下载
php需要配合服务器软件共同使用，这里我们选择apache。
选择7.4版本的x86Thread Safe版本，因为需要下载和php相对应的apache，如果下载高版本php或者x64版本的php，启动apache会出现奇奇怪怪的问题。
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-QgbNkgoU-1615712051015)(${images}/image-20210314160631590.png)]]]></description><category></category></item><item><title><![CDATA[python opencv合并图片]]></title><link>https://blog.csdn.net/MDwalu/article/details/113774851</link><guid>https://blog.csdn.net/MDwalu/article/details/113774851</guid><author>MDwalu</author><pubDate>Tue, 09 Feb 2021 19:55:18 +0800</pubDate><description><![CDATA[python  使用opencv和numpy纵向连接两张图片]]></description><category></category></item></channel></rss>