【文件属性】:
文件名称:把整数生成唯一字符串的PHP库.zip
文件大小:6KB
文件格式:ZIP
更新时间:2022-07-31 04:00:27
类库下载-把整数生成唯一字符串的PHP库
<?php
/*
* This file is part of Hashids.
* (c) Ivan Akimov
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Hashids;
use RuntimeException;
/**
* This is the math class.
* @author Vincent Klaiber
* @author Jakub Kramarz
*/
class Math
{
/**
* Add two arbitrary-length integers.
* @param string $a
* @param string $b
* @throws \RuntimeException
* @return string
*/
public static function add($a, $b)
{
if (function_exists('gmp_add')) {
return gmp_add($a, $b);
}
if (function_exists('bcadd')) {
return bcadd($a, $b, 0);
}
throw new RuntimeException('Missing BC Math or GMP extension.');
}字符串或串(String)是由数字、字母、下划线组成的一串字符。一般记为 s=“a1a2···an”(n>=0)。它是编程语言中表示文本的数据类型。在程序设计中,字符串(string)为符号或数值的一个连续序列,如符号串(一串字符)或二进制数字串(一串二进制数字)。通常以串的整体作为操作对象,如:在串中查找某个子串、求取一个子串、在串的某个位置上插入一个子串以及删除一个子串等。两个字符串相等的充要条件是:长度相等,并且各个对应位置上的字符都相等。设p、q是两个串,求q在p中首次出现的位置的运算叫做模式匹配。串的两种最基本的存储方式是顺序存储方式和链接存储方式。
【文件预览】:
hashids.php-master
----LICENSE(1KB)
----composer.json(1KB)
----src()
--------Math.php(4KB)
--------HashidsInterface.php(1KB)
--------Hashids.php(9KB)
--------HashidsException.php(436B)