Table of Contents
前沿:
正则表达式测试工具
MD5加密工具
SHA1加密工具:
URL转码和解码工具:
ASCII与字符之间的转换工具:
Home php教程 php手册 用PHP自己编写的站长工具箱

用PHP自己编写的站长工具箱

Jun 06, 2016 pm 07:53 PM
php work toolbox Own

前沿: 看到站长之家的站长工具很强大,所以也想自己试着实现一些其中的功能,由于本人只具有初阶的php技术,所以便用php一些函数实现了部分功能。 主要功能包括:正则表达式测试工具,MD5和SHA1加密工具,URL编码和解码工具,ASCII与字符之间的转换工具。

前沿:

看到站长之家的站长工具很强大,所以也想自己试着实现一些其中的功能,由于本人只具有初阶的php技术,所以便用php一些函数实现了部分功能。

主要功能包括:正则表达式测试工具,MD5和SHA1加密工具,URL编码和解码工具,ASCII与字符之间的转换工具。

演示地址:http://zhanzhanggongju.duapp.com/

正则表达式测试工具

演示地址:http://zhanzhanggongju.duapp.com/fun/zengze.php

原理:

通过表单获取正则规则和匹配的字符串,然后通过preg_match_all()函数,进行正则,然后用implode函数将获得的数组转化为字符串,再输出。

代码:

<div class="big">
<div class="welcome">正则表达式测试工具</div>
<div class="menu">
<form action="#" target="_self" method="post">
<p class="input">正 则 规 则 :<input type="text" name="mode"></p>

<p class="input">匹配字符串:<input type="text" name="str"></p>

<input type="submit" name="sub" value="匹配" class="button">
</form>
<p> </p>
<?php if(@$_POST[sub]){
	$mode="/".@$_POST[mode]."/";
	$str=@$_POST[str];
	echo "<p class=\"input\">匹配规则是:$mode";
	echo "<p class='\"input\"'>您输入的字符串是:$str</p>";
	if(preg_match_all($mode,$str,$arr)){
		echo "<p class='\"input\"'>匹配成功,匹配结果是:";
		echo "<font color='\"#FF0000\"'>".implode(" ",$arr[0])."</font></p>";
	}else{
      echo "<p class='\"input\"'>匹配失败,请检查正则或匹配字符串</p>";
	}
}
?>
</div>
<?php include("../footer.php");
?>
</div>

Copy after login

MD5加密工具

演示地址:http://zhanzhanggongju.duapp.com/fun/md5.php

原理:通过表单,获取需要加密的内容,然后当选择32位小写时,直接通过md5()函数进行加密;当选择32位大写的时候,把md5()加密以后的内容,在通过strtoupper()函数,将所有小写字母转化为大写;当选择16位的时候,通过substr(“str”,8,16)函数,将加密以后的内容进行截取,截取的规则是,从第8个字符开始,连续截取16个字符。

代码:

<div class="big">
<div class="welcome">md5算法是一种不可逆的加密算法</div>
<div class="menu">
<form action="#" target="_self" method="post">
<p class="input">加密内容:<input type="text" name="str"></p>
<p class="input"><input type="radio" name="encode" value="32xiao" checked>32位(小)    <input type="radio" name="encode" value="32da">32位(大)</p>
<p class="input"><input type="radio" name="encode" value="16xiao">16位(小)  
<input type="radio" name="encode" value="16da">16位(大)</p>
<input type="submit" name="sub" value="进行加密" class="button">
</form>
<?php if(@$_POST[sub]){
	$str=@$_POST[str];
	echo "<p class=\"input\">您要加密的内容为:".$str."";
	if(@$_POST[encode]=="32xiao"){
		 echo "<p class='\"input\"'>您选选择的32位小的加密算法</p>";
	     $result=md5($str);
	}else if(@$_POST[encode]=="32da"){
		echo "<p class='\"input\"'>您选选择的32位大的加密算法</p>";
		 $result=strtoupper(md5($str,false));
	}else if(@$_POST[encode]=="16xiao"){
		echo "<p class='\"input\"'>您选选16位小的加密算法</p>";
		$result=substr(md5("$str"),8,16);
	}else if(@$_POST[encode]=="16da"){
		echo "<p class='\"input\"'>您选选16位大的加密算法</p>";
		$result=strtoupper(substr(md5("$str"),8,16));
	}
	echo "<p class='\"input\"'>加密结果为:"."<font color='\"#FF0000\"'>".$result."</font></p>";
}
?>
</div>
<?php include("../footer.php");
?>
</div>
Copy after login

SHA1加密工具:

演示地址:http://zhanzhanggongju.duapp.com/fun/sha1.php

原理:通过表单获取加密内容,然后当选择40位SHA1小写 时,直接使用sha1()函数进行加密即可;当选择40位SHA1大写的时候,对加密以后的内容再使用strtoupper()函数,进行大小写转换。

代码:

<div class="big">
<div class="welcome">SHA1算法是一种不可逆的加密算法</div>
<div class="menu">
<form action="#" target="_self" method="post">
<p class="input">加密内容:<input type="text" name="str"></p>
<p class="input"><input type="radio" name="encode" value="xiao" checked>40位SHA1小写   <input type="radio" name="encode" value="da">40位SHA1大写</p>
<input type="submit" name="sub" value="进行加密" class="button">
</form>
<?php if(@$_POST[sub]){
	$str=@$_POST[str];
	echo "<p class=\"input\">您要加密的内容为:".$str."";
	if(@$_POST[encode]=="xiao"){
		 echo "<p class='\"input\"'>您选择了40位SHA1小的加密算法</p>";
	     $result=sha1($str);
	}else if(@$_POST[encode]=="da"){
		echo "<p class='\"input\"'>您选择了40位SHA1大的加密算法</p>";
		$result=strtoupper(sha1($str,false));
	}
		echo "<p class='\"input\"'>加密结果为:"."<font color='\"#FF0000\"'>".$result."</font></p>";
}
?>
</div>
<?php include("../footer.php");
?>
</div>
Copy after login

URL转码和解码工具:

演示地址:http://zhanzhanggongju.duapp.com/fun/urlen.php

原理:

通过表单获取需要转码(或解码)内容,然后通过urlencode()函数(或urldecode()函数)进行操作。

url转码的代码:

<div class="big">
<div class="welcome">将非数字字母转换为url编码的方法</div>
<div class="menu">
<form action="#" target="_self" method="post">
<p class="input">编码内容:<input type="text" name="str"></p>
<input type="submit" name="sub" value="进行编码" class="button">
</form>
<?php if(@$_POST[sub]){
	$str=@$_POST[str];
	echo "<p class=\"input\">您要编码的内容为:".$str."";
	echo  "<p class='\"input\"'>url编码结果:"."<font color='\"#FF0000\"'>".urlencode($str)."</font></p>";
}
?>
</div>
<?php include("../footer.php");
?>
</div>
Copy after login

ASCII与字符之间的转换工具:

演示地址:http://zhanzhanggongju.duapp.com/fun/asciito.php

原理:

通过表单获取需要转换内容,然后通过函数chr()实现ASCII码到字符的转换,通过函数ord()实现字符到ASCII码之间的转换。

由于只有3~126之间的ASCII码,才能进行打印在显示器上,所以该工具只能显示这部分的ASCII码。

ASCII转到字符的代码:

<div class="big">
<div class="welcome">本工具只支持33~126之间的ASCII码查询</div>
<div class="menu">
<form action="#" target="_self" method="post">
<p class="input">ASCII码:<input type="text" name="str"></p>
<input type="submit" name="sub" value="进行转换" class="button">
</form>
<?php if(@$_POST[sub]){
	$str=@$_POST[str];
	echo "<p class=\"input\">您要转码的字符为:".$str."";
	echo  "<p class='\"input\"'>ASCII码对应的字符为:"."<font color='\"#FF0000\"'>".chr($str)."</font></p>";
}
?>
</div>
<?php include("../footer.php");
?>
</div>
Copy after login

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

To work on file upload we are going to use the form helper. Here, is an example for file upload.

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

In this chapter, we are going to learn the following topics related to routing ?

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

Validator can be created by adding the following two lines in the controller.

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

See all articles