分类 转载 下的文章

<?php

use PHPMailer\PHPMailer\PHPMailer;
use PHPMailer\PHPMailer\Exception;

require 'vendor/autoload.php';

class Email
{
    protected $config;

    public function __construct()
    {
        // 以下配置可根据需要存储在数据库或在项目配置文件中存放
        $this->config = [
            // smtp 服务地址
            'host'     => 'smtp.qq.com',
            // 邮箱的账号
            'username' => '你的邮箱',
            // 邮箱授权密码
            'password' => '邮箱授权码',
            // 端口
            'port'     => '465', // 建议使用465默认
            // 发件人名称
            'sender'   => 'fenmy', 
        ];
    }


    /**
     * 发送邮件
     * @param string $email 收件人邮箱
     * @param string $subject 邮件主题
     * @param string $body 邮件内容
     * @param array  $vars 邮件内容变量
     * @param array  $attachments 附件
     * @return array
     */
    public function sendEmail(string $email, string $subject, string $body, array $vars = [], array $attachments = [])
    {
        $mail = new PHPMailer(true);
        try {
            // 邮箱配置
            $config = $this->config;

            /**** 服务器设置 ****/

            // 使用SMTP服务
            $mail->isSMTP();
            // smtp服务地址
            $mail->Host = $config['host'];
            // 设置是否进行权限校验
            $mail->SMTPAuth = true;
            // SMTP账号
            $mail->Username = $config['username'];
            // SMTP密码(客户端授权密码,注意不是登录密码)
            $mail->Password = $config['password'];
            // 使用ssl协议
            $mail->SMTPSecure = PHPMailer::ENCRYPTION_SMTPS;
            // 端口设置
            $mail->Port = $config['port'];
            // 字符集设置,防止中文乱码
            $mail->CharSet = 'utf-8';


            /**** 发件人 ****/

            // 设置邮箱的来源,与邮箱的账号一致,名称随意
            $mail->setFrom($config['username'], $config['sender']);
            // 设置回复地址,一般与来源保持一致
            $mail->addReplyTo($config['username'], $config['sender']);


            /**** 收件人 ****/

            // 设置收件人的邮箱地址
            $mail->addAddress($email);


            /**** 附件 ****/
            foreach ($attachments as $key => $val) {
                $path = $key;
                $name = '';
                if (is_numeric($key)) {
                    $path = $val;
                } else {
                    $name = $val;
                }

                // 添加附件
                $mail->addAttachment($path, $name);
            }


            /**** 发送内容 ****/

            // 是否为 HTML 格式
            $mail->isHTML(true);
            // 主题
            $mail->Subject = $subject;
            // 正文
            foreach ($vars as $key => $val) {
                $search = '{' . $key . '}';
                $body   = str_replace($search, (string) $val, $body);
            }
            $mail->Body = $body;

            // 发送邮件
            $mail->send();

            return ['code' => 200, 'msg' => '发送成功', 'data' => null];
        } catch (Exception $e) {
            return ['code' => 500, 'msg' => $e->getMessage(), 'data' => null];
        }
    }
}

$res = (new Email())->sendEmail(
    '收件人邮箱',
    '邮箱验证提醒',
    '尊敬的用户,您的验证码为:{code},请勿泄漏于他人!',
    ['code' => rand(100000, 999999)]
);
var_dump($res);

composer require phpmailer/phpmailer

//input 是个可以访问请求的原始数据的只读流。 POST 请求的情况下,最好使用 php://input 来代替 $HTTP_RAW_POST_DATA,因为它不依赖于特定的 php.ini 指令。 而且,这样的情况下 $HTTP_RAW_POST_DATA 默认没有填充, 比激活 always_populate_raw_post_data 潜在需要更少的内存。 enctype="multipart/form-data" 的时候 php://input 是无效的。 
 
1, php://input 可以读取http entity body中指定长度的值,由Content-Length指定长度,不管是POST方式或者GET方法提交过来的数据。但是,一般GET方法提交数据 时,http request entity body部分都为空。
2,php://input 与$HTTP_RAW_POST_DATA读取的数据是一样的,都只读取Content-Type不为multipart/form-data的数据。

- 阅读剩余部分 -

将文件链接地址转为blob

fetch('https://blog.csdn.net').then(res => res.blob()).then(blob => { 
  const a = document.createElement('a')
  a.href = URL.createObjectURL(blob)
  console.log(a.href)
  a.download = ''  // 下载文件的名字
  document.body.appendChild(a)
  a.click()})

JavaScript生成GUID的算法

全局唯一标识符(GUID,Globally Unique Identifier)也称作 UUID(Universally Unique IDentifier) 。

GUID是一种由算法生成的二进制长度为128位的数字标识符。GUID 的格式为“xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx”,其中的 x 是 0-9 或 a-f 范围内的一个32位十六进制数。在理想情况下,任何计算机和计算机集群都不会生成两个相同的GUID。

GUID 的总数达到了2^128(3.4×10^38)个,所以随机生成两个相同GUID的可能性非常小,但并不为0。GUID一词有时也专指微软对UUID标准的实现。

算法1:

    function uuid() {
    var s = [];
    var hexDigits = "0123456789abcdef";
    for (var i = 0; i < 36; i++) {
        s[i] = hexDigits.substr(Math.floor(Math.random() * 0x10), 1);
    }
    s[14] = "4";  // bits 12-15 of the time_hi_and_version field to 0010
    s[19] = hexDigits.substr((s[19] & 0x3) | 0x8, 1);  // bits 6-7 of the clock_seq_hi_and_reserved to 01
    s[8] = s[13] = s[18] = s[23] = "-";
 
    var uuid = s.join("");
    return uuid;
}

算法2:

    function guid() {
    return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function(c) {
        var r = Math.random()*16|0, v = c == 'x' ? r : (r&0x3|0x8);
        return v.toString(16);
    });
}

算法3:

    function guid() {
    function S4() {
       return (((1+Math.random())*0x10000)|0).toString(16).substring(1);
    }
    return (S4()+S4()+"-"+S4()+"-"+S4()+"-"+S4()+"-"+S4()+S4()+S4());
}

算法4:

    function uuid(len, radix) {
    var chars = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz'.split('');
    var uuid = [], i;
    radix = radix || chars.length;
 
    if (len) {
      // Compact form
      for (i = 0; i < len; i++) uuid[i] = chars[0 | Math.random()*radix];
    } else {
      // rfc4122, version 4 form
      var r;
 
      // rfc4122 requires these characters
      uuid[8] = uuid[13] = uuid[18] = uuid[23] = '-';
      uuid[14] = '4';
 
      // Fill in random data.  At i==19 set the high bits of clock sequence as
      // per rfc4122, sec. 4.1.5
      for (i = 0; i < 36; i++) {
        if (!uuid[i]) {
          r = 0 | Math.random()*16;
          uuid[i] = chars[(i == 19) ? (r & 0x3) | 0x8 : r];
        }
      }
    }
 
    return uuid.join('');
}

这个可以指定长度和基数。比如

// 8 character ID (base=2)
uuid(8, 2)  //  "01001010"
// 8 character ID (base=10)
uuid(8, 10) // "47473046"
// 8 character ID (base=16)
uuid(8, 16) // "098F4D35"

源自:

http://www.broofa.com/2008/09/javascript-uuid-function/

http://note19.com/2007/05/27/javascript-guid-generator/

http://www.ietf.org/rfc/rfc4122.txt

http://stackoverflow.com/questions/105034/how-to-create-a-guid-uuid-in-javascript/873856#873856

原文章来源https://www.cnblogs.com/snandy/p/3261754.html
此处仅作记录,防止丢失