kk Blog —— 通用基础


date [-d @int|str] [+%s|"+%F %T"]
netstat -ltunp
sar -n DEV 1

ubuntu18.04 编译php8.1 fpm, 连接apache2, mariadb

下载 https://www.php.net/downloads.php

一、编译安装php

https://www.cnblogs.com/architectforest/p/15714248.html

依赖

1
sudo apt-get install gcc g++ libxml2-dev pkg-config libkrb5-dev libssl-dev libsqlite3-dev zlib1g-dev libbz2-dev libcurl4-openssl-dev libpng-dev libjpeg-dev libfreetype-dev libonig-dev libxslt-dev libzip-dev

配置:

安装目录为 /usr/local/php8

1
./configure --prefix=/usr/local/php8 --with-config-file-path=/usr/local/php8/etc --with-curl --with-freetype --enable-gd --with-jpeg  --with-gettext --with-kerberos --with-libdir=lib64 --with-libxml --with-mysqli --with-openssl --with-pdo-mysql  --with-pdo-sqlite --with-pear --enable-sockets --with-mhash --with-ldap-sasl --with-xsl --with-zlib --with-zip -with-bz2 --with-iconv  --enable-fpm --enable-pdo --enable-ftp --enable-bcmath  --enable-mbregex --enable-mbstring --enable-opcache --enable-pcntl  --enable-shmop --enable-soap --enable-sockets --enable-sysvsem --enable-xml --enable-sysvsem --enable-cli --enable-opcache --enable-intl --enable-calendar --enable-static --enable-mysqlnd

编译安装

1
2
make
make install

配置文件

在编译目录 php.ini

1
cp php.ini-production /usr/local/php8/etc/php.ini

www.conf

1
cp /usr/local/php8/etc/php-fpm.d/www.conf.default /usr/local/php8/etc/php-fpm.d/www.conf

php-fpm.conf

1
cp /usr/local/php8/etc/php-fpm.conf.default /usr/local/php8/etc/php-fpm.conf

配置用户

1
2
3
4
5
6
vim /usr/local/php8/etc/php-fpm.d/www.conf

;user = nobody
;group = nobody
user = apache
group = apache

生成启动文件

在编译目录

1
2
3
4
5
6
7
cp sapi/fpm/php-fpm.service /etc/systemd/system/

vim /etc/systemd/system/php-fpm.service

# Mounts the /usr, /boot, and /etc directories read-only for processes invoked by this unit.
#ProtectSystem=full
ProtectSystem=false

把 ProtectSystem=full修改为: ProtectSystem=false

启动

1
2
3
4
5
6
7
systemctl daemon-reload

systemctl restart php-fpm


netstat -ltnup | grep 9000
tcp        0      0 127.0.0.1:9000          0.0.0.0:*               LISTEN      12374/php-fpm: mast

编译安装mysqli拓展

https://www.cnblogs.com/sqsgoodluck/p/16659116.html

编译的时候已经默认包含了?

mysqlnd

1
2
3
4
5
6
7
cd ext/mysqlnd

/usr/local/php8/bin/phpize

./configue
make
make install

mysqli

1
2
3
4
5
6
7
cd ext/mysqli

/usr/local/php8/bin/phpize

./configue
make
make install

apache2 使用 php-fpm

https://www.php.cn/faq/503744.html

我们需要了解Apache服务器与PHP语言之间的关系。Web服务器通过模块来扩展或优化其功能。对于Apache而言,它通过一个叫做“模块”的方式来扩展它的功能。而在Apache的模块中,就有一个关于PHP解释器的模块,可以让Apache服务器在运行时对PHP文件的解析和执行提供支持。

https://blog.csdn.net/yueyecheshou1980/article/details/106229421

使用 PHP-FPM 就意味着不用 Apache 内置的 mod_php,也就是要在 Apache 之外处理 php 程序的解释运行问题。看起来是多引入了一个额外的程序 PHP-FPM,既占 CPU 又占内存。但是这样一来,因为 Apache 可以专心处理除 php 之外的静态网页及元素,反而 httpd 进程本身占用的 CPU 和内存可以显著降低,从而从整体上降低资源消耗。

https://blog.csdn.net/paul_god/article/details/125251431

要想使php支持php-fpm,只需要找到你当初安装的源码,重新编译一下,在编译的时候带上 –enable-fpm 就可以了。

PHP-FPM 监听方式

官方文档提到的 PHP-FPM 监听方式(接收 Apache 转过去的处理 PHP 的请求的方式)有 2 个。这是在 PHP-FPM 的 pool 配置文件,如 /etc/php-fpm.d/www.conf 中设置的监听方式。分别如下,

vim /usr/local/php8/etc/php-fpm.d/www.conf

1
2
TCP socket (IP 和 port)
listen = 127.0.0.1:9000

就表示使用 TCP socket 方式。

Unix Domain Socket (UDS)(Apache 2.4.9 及以上版本才支持此方式),通过路径指明 socket 的位置 /path/to/unix/socket,例如,

1
listen = /var/run/php-fpm/php-fpm.sock

就表示使用 UDS 方式。

因为暂时 CentOS 7 中默认的还是 Apache 2.4.6

Apache 发送 PHP 处理请求的方式

原来的 mod_php 采用 SetHandler 的方式处理 php 文件并不需要特别的设置,因为在安装 PHP 的时候会自动在 Apache 的配置文件目录写入一个 php.conf 的配置文件,里面有告诉 Apache 处理 php 需要的操作:

vim /etc/apache2/apache2.conf

1
2
3
<FilesMatch .php$>
	SetHandler "proxy:fcgi://127.0.0.1:9000"
</FilesMatch>

service apache2 restart

php-fpm 连接 mysql

https://blog.csdn.net/youcijibi/article/details/77002714

service php-fpm restart

service php-fpm status

因为mysqlnd并不是一个php的扩展,所以会报错:

NOTICE: PHP message: PHP Warning: PHP Startup: Invalid library (maybe not a PHP library) ‘mysqlnd.so’ in Unknown on line 0

只要在php.ini里指定好mysql.sock的位置即可:大约在1023行

vim /usr/local/php8/etc/php.ini

1
2
3
4
[Pdo_mysql]
pdo_mysql.default_socket=/var/run/mysqld/mysqld.sock

mysqli.default_socket = /var/run/mysqld/mysqld.sock

service php-fpm restart

这样php即可与mysql进行通信

jquery二维码生成插件jquery.qrcode.js


https://www.jq22.com/jquery-info294

如何使用它

将jquery.qrcode.min.js和jquery添加到您的网页中

1
2
<script src="jquery.min.js"></script>
<script type="text/javascript" src="jquery.qrcode.min.js"></script>

然后创建一个DOM元素去包含生成qr码。

1
<div id="qrcode"></div>

然后你在此容器中的添加qrcode

1
2
3
4
5
<script>
jQuery(function(){
	jQuery('#qrcode').qrcode("http://abcdxyzk.github.io");
})
</script>

就这么简单,您想要的二维码就生成了。

进阶用法

指定二维码的生成方式:

可以在调用函数的同时输入想要的二维码生成方式(table/canvas)。

1
2
3
4
5
6
7
8
9
10
11
//使用table生成
jQuery('#qrcode').qrcode({
	render: "table",
	text: "http://abcdxyzk.github.io"
});
 
//使用canvas生成
jQuery('#qrcode').qrcode({
	render: "canvas",
	text: "http://abcdxyzk.github.io"
});

指定生成二维码的大小:

可以在调用函数的同时输入想要生成二维码的宽度和高度即可指定生成的二维码的大小。

1
2
3
4
5
6
7
8
//生成100*100(宽度100,高度100)的二维码
jQuery('#qrcode').qrcode({
	render: "canvas", //也可以替换为table
	width: 100,
	height: 100,
	text: "http://abcdxyzk.github.io",
	correctLevel:3  //二维码纠错级别
});

指定生成二维码的色彩样式:

可以在调用函数的同时输入想要生成二维码的前景色和背景色即可指定生成的二维码的色彩样式。

1
2
3
4
5
6
7
//生成前景色为红色背景色为白色的二维码
jQuery('#qrcode').qrcode({
	render: "canvas", //也可以替换为table
	foreground: "#C00",
	background: "#FFF",
	text: "http://abcdxyzk.github.io"
});

中文ULR生成方法:

1
jQuery("#output").qrcode(encodeURI("http://中文中文")); //使用encodeURI进行转码

JavaScript 实现搜索框联想功能

https://www.runoob.com/w3cnote/javascript-autocomplete.html

基础 HTML 代码

1
2
3
4
5
6
7
<!-- autocomplete="off" 确保表单已关闭自动填充功能: -->
<form autocomplete="off" action="/index.php">
	<div class="autocomplete" style="width:300px;">
		<input id="myInput" type="text" name="s" placeholder="请输入搜索内容">
	</div>
	<input type="submit">
</form>

以下搜索搜索框和联想菜单的样式:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
.autocomplete {
	/*容器定位设置为 relative:*/
	position: relative;
	display: inline-block;
}
.autocomplete-items {
	position: absolute;
	border: 1px solid #d4d4d4;
	border-bottom: none;
	border-top: none;
	z-index: 99;
	/*设置自动填充项宽度与容器相同*/
	top: 100%;
	left: 0;
	right: 0;
}
.autocomplete-items div {
	font-size: 15px;
	padding: 1px;
	cursor: pointer;
	background-color: #fff;
	border-bottom: 1px solid #d4d4d4;
}
.autocomplete-items div:hover {
	/*鼠标移动到填充项设置的背景颜色*/
	background-color: #e9e9e9;
}
.autocomplete-active {
	/*使用箭头键浏览填充项时的背景颜色*/
	background-color: DodgerBlue !important;
	color: #ffffff;
}

以下是搜索搜索框和联想菜单的 JavaScript 代码:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
function autocomplete(inp, arr) {
	/*自动填充函数有两个参数,input 输入框元素和自动填充的数组*/
	var currentFocus;
	/* 监听 input 输入框,当在 input 输入框元素中时执行以下函数*/
	inp.addEventListener("input", function(e) {
		var a, b, i, val = this.value, an = 0;
		/*关闭已打开的自动填充列表*/
		closeAllLists();

		if (!val) { return false;}

		currentFocus = -1;
		/*创建 DIV 元素用于放置自动填充列表的值*/
		a = document.createElement("DIV");
		a.setAttribute("id", this.id + "autocomplete-list");
		a.setAttribute("class", "autocomplete-items");
		/*DIV 作为自动填充容器的子元素*/
		this.parentNode.appendChild(a);
		/*循环数组*/
		for (i = 0; i < arr.length; i++) {
			/*检查填充项是否有与文本字段值相同的内容,不区分大小写*/
			if (arr[i].substr(0, val.length).toUpperCase() == val.toUpperCase()) {
				/*为每个匹配元素创建一个 DIV 元素 */
				b = document.createElement("DIV");
				/*匹配项加粗*/
				b.innerHTML = "<strong>" + arr[i].substr(0, val.length) + "</strong>";
				b.innerHTML += arr[i].substr(val.length);
				/*选中的填充项插入到隐藏 input 输入字段,用于保存当前选中值*/
				b.innerHTML += "<input type='hidden' value='" + arr[i] + "'>";
				/*当有人点击填充项(DIV 元素)时执行函数*/
				b.addEventListener("click", function(e) {
					/*选中的填充项插入到隐藏 input 搜索字段*/
					inp.value = this.getElementsByTagName("input")[0].value;
					/*关闭自动填充列表*/
					closeAllLists();
				});
				a.appendChild(b);
				an ++;
				if (an > 20)
					break;
			}
		}
	});

	/*按下键盘上的一个键时执行函数*/
	inp.addEventListener("keydown", function(e) {
		var x = document.getElementById(this.id + "autocomplete-list");
		if (x) x = x.getElementsByTagName("div");
		if (e.keyCode == 40) {
			/*如果按下箭头向下键,currentFocus 变量加 1,即向下移动一位*/
			currentFocus++;
			/*使当前选中项更醒目*/
			addActive(x);
		} else if (e.keyCode == 38) { //up
			/*按下箭头向上键,选中列表项向上移动一位*/
			currentFocus--;
			/*使当前选中项更醒目*/
			addActive(x);
		} else if (e.keyCode == 13) {
			/*如果按下 ENTER 键,阻止提交,你也可以设置 submit 提交*/
			e.preventDefault();

			/* search_word(); */

			if (currentFocus > -1) {
				/*模拟点击选中项*/
				if (x) x[currentFocus].click();
			}
		}
	});

	function addActive(x) {
		/*设置选中的选项函数*/
		if (!x) return false;
		/*移动选项设置不同选中选项的背景颜色*/
		removeActive(x);
		if (currentFocus >= x.length) currentFocus = 0;
		if (currentFocus < 0) currentFocus = (x.length - 1);
		/*添加 "autocomplete-active" 类*/
		x[currentFocus].classList.add("autocomplete-active");
	}
	function removeActive(x) {
		/*移除没有选中选项的 "autocomplete-active" 类*/
		for (var i = 0; i < x.length; i++) {
			x[i].classList.remove("autocomplete-active");
		}
	}
	function closeAllLists(elmnt) {
		/*关闭自动添加列表*/
		var x = document.getElementsByClassName("autocomplete-items");
		for (var i = 0; i < x.length; i++) {
			if (elmnt != x[i] && elmnt != inp) {
				x[i].parentNode.removeChild(x[i]);
			}
		}
	}

	/*点击 HTML 文档任意位置关闭填充列表*/
	document.addEventListener("click", function (e) {
		closeAllLists(e.target);
	});
}

最后我们在 id 为 myInput 的 input 输入框使用以上 JavaScript 代码:

1
2
var sites = ["Google","Taobao","Runoob","Wiki","Zhihu","Baidu","Sina","Tmall","JD","Alibaba","QQ","Weixin"];
autocomplete(document.getElementById("myInput"), sites);