
PHP通用类
文章平均质量分 70
封装的通用类
Super乐
闭上自己的嘴,抬起自己的腿,走自己的人生路。
展开
-
Lavael + PHP和JAVA对接接口,RSA+DES加解密和验签的总结
/** * @param string/array $data [待加密的字符串或者是数组] * @uses rsa公钥加密 */private function rsaPublicEncrypt($data = ''){ if (is_array($data)) { $formatData = json_encode($data, JSON_UNESCAPED_UNICODE); } else { $formatData = $data.原创 2020-06-16 15:58:39 · 432 阅读 · 0 评论 -
采集(file_get_contents)
用file_get_contents进行采集 <?php header("content-type:text/html;charset=utf-8"); $url="http://www.php7.com/dwzchd/aa.html"; $file=file_get_contents($url); $pre='#(.*)#isU';原创 2016-07-29 20:11:36 · 452 阅读 · 0 评论 -
项目记录日志类
<?phpclass Logger{private static function createdir($dir){//检查目录或文件是否存在if(file_exists($dir))return true;//把\替换为/$dir = str_replace("\\","/",$dir);substr($dir,-1)=="/"?$dir=substr($d...原创 2018-08-09 18:00:09 · 438 阅读 · 0 评论 -
PHP 3DES解密
class Crypt3Des { var $key; public function __construct($key){ $this->key = $key; } function encrypt($input){ $size = mcrypt_get_block_size(MCRYPT_3DES,'ecb'); ...原创 2018-07-16 14:22:44 · 945 阅读 · 0 评论 -
封装php的非对称加密RSA
将php的openssl扩展中的非对称加密函数封装成一个Rsa类。需要注意的是,在windows上,需要打开openssl的配置文件,请参照官方的openssl扩展安装文档。//以下说明2011-06-23添加在windows上安装openssl扩展1、将php路径下的两个库文件libeay32.dll和ssleay32.dll复制到操作system32下2、配置openssl配置文件的原创 2016-07-29 10:45:27 · 675 阅读 · 0 评论 -
在CI框架中如何发送email?
public function sendemail() { $config = array('protocol'=>'smtp', 'smtp_host' => 'smtp.163.com', 'smtp_user' => '邮箱的用户名', 'smtp_pass' => '自原创 2016-07-29 20:03:09 · 551 阅读 · 0 评论 -
mail.class.php
<?php header("content-type:text/html;charset=utf-8"); //引入原来的类文件 require 'class.phpmailer.php'; class Mail { static public $error = ''; static public function send(原创 2016-07-29 20:02:02 · 589 阅读 · 0 评论 -
class.phpmailer.php(email这个类)
<?php /*~ class.phpmailer.php .---------------------------------------------------------------------------. | Software: PHPMailer - PHP email class原创 2016-07-29 20:00:56 · 6608 阅读 · 0 评论 -
php发送email最终版 (案例)
1.建立一个send.html页面 收件人: 标 题: 内 容: 发件人: 2.跳转到mail_send.php 页面 。mail_send.php中包含Mail.class.php类如果找不到mail_send.php 没有关系 点击这个网址 复制代码重新建一个mail_send原创 2016-07-29 19:56:46 · 1091 阅读 · 0 评论 -
mail_send.php
<?php // 接收值 $toman=$_POST['toman']; $titles=$_POST['title']; $contents=$_POST['content']; $fromman=$_POST['fromman']; //引入类 require 'Mail.clas原创 2016-07-29 19:55:46 · 635 阅读 · 0 评论 -
php在原生代码中如何简单快速的发送email
<?php header("content-type:text/html;charset=utf-8"); include("class.phpmailer.php"); include("class.smtp.php"); $mail = new PHPMailer(); $mail->IsSMTP(); // send via SMT原创 2016-07-29 19:52:53 · 1395 阅读 · 0 评论