随笔分类 -  PHP

摘要:<?php //需要开启 php_ssh2 扩展。安装扩展后 php.ini 里添加 extension=ssh2 class Sftp { // 连接为NULL private $conn = NULL; // 是否使用秘钥登陆 private $usePubKey= false; //sftp 阅读全文
posted @ 2021-04-02 23:33 风吹屁股凉冰冰 阅读(307) 评论(0) 推荐(0) 编辑
摘要:test.php文件 <?php //文件路径 /Servdata/web/test/test.php //该页面可通过浏览器打开 $bidUser = $_GET['bidUser']; $auctionId = $_GET['auctionId']; $bidPrice = $_GET['bid 阅读全文
posted @ 2020-04-27 11:42 风吹屁股凉冰冰 阅读(605) 评论(0) 推荐(0) 编辑
摘要:test_encry.php testprivate.pem testpublic.pem openssl.cnf 阅读全文
posted @ 2019-09-16 21:09 风吹屁股凉冰冰 阅读(2300) 评论(0) 推荐(0) 编辑
摘要:<?php //小程序appid $appid = 'wx79d7c348d19f010c'; //小程序 APPSecret 密钥 $appsecret = 'd624aca86d0350eec824cde1baec36cb'; $url = 'https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&a... 阅读全文
posted @ 2018-12-03 11:57 风吹屁股凉冰冰 阅读(2586) 评论(0) 推荐(0) 编辑
摘要:index.php index2.php 阅读全文
posted @ 2018-11-26 13:56 风吹屁股凉冰冰 阅读(502) 评论(0) 推荐(0) 编辑
摘要:IsSMTP(); // 启用SMTP $mail->Host='smtp.126.com'; //smtp服务器的名称(这里以126邮箱为例)'smtp.126.com' $mail->SMTPAuth = TRUE; //启用smtp认证 $mail->Username = 'zdy_521@126.com'; //发件人邮箱名 $mail->Password... 阅读全文
posted @ 2018-11-22 16:06 风吹屁股凉冰冰 阅读(293) 评论(0) 推荐(0) 编辑
摘要:'./public/img1.jpg', 'down_path' => 'file1/newimg1.jpg'); $fileArr[1] = array('file_path' => './public/img2.jpg', 'down_path' => 'file1/newimg2.jpg'); $fileArr[2] = array('file_path' => './public/im... 阅读全文
posted @ 2018-11-21 11:54 风吹屁股凉冰冰 阅读(4658) 评论(0) 推荐(0) 编辑
摘要:wxPayConfig ['APPID'] = 'wx426b3015555a46be'; // APPSECRET:公众帐号secert(仅JSAPI支付的时候需要配置, 登录公众平台,进入开发者中心可设置) $this->wxPayConfig ['APPSECRET'] = '7813490da6f1265e4901ffb80afaa36f'; ... 阅读全文
posted @ 2018-09-13 11:05 风吹屁股凉冰冰 阅读(1694) 评论(0) 推荐(0) 编辑
摘要:'wx0ad699db1a9ff6d3', // 小程序appid 'mch_id' => 1513841901, // 小程序商户号 'key' => 'qwer122asdauiyfue1nm65qa12dds1r1', // key 获取设置路径:微信商户平台(pay.weixin.qq.com)... 阅读全文
posted @ 2018-09-04 18:21 风吹屁股凉冰冰 阅读(446) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2018-08-31 15:15 风吹屁股凉冰冰 阅读(1374) 评论(0) 推荐(0) 编辑
摘要:index.php wxBizDataCrypt.php errorCode.php 阅读全文
posted @ 2018-08-31 14:43 风吹屁股凉冰冰 阅读(10874) 评论(0) 推荐(0) 编辑
摘要:self::STARTA,'B'=>self::STARTB,'C'=>self::STARTC); private $code =''; private $bin_code =''; private $text =''; public function __construct() { } public function ... 阅读全文
posted @ 2018-07-18 23:43 风吹屁股凉冰冰 阅读(1034) 评论(0) 推荐(0) 编辑
摘要:附 phpqrcode.php 页内容 阅读全文
posted @ 2018-07-18 23:42 风吹屁股凉冰冰 阅读(1386) 评论(0) 推荐(0) 编辑
摘要:先下载oracle客户端 下载地址 http://www.oracle.com/technetwork/topics/winx64soft-089540.html 下载如下三个版本 instantclient-basic-win64-10.2.0.5.zip instantclient-sqlplus-win64-10.2.0.5.zip instantclient-odbc-win64-10.2.0.5.zip 阅读全文
posted @ 2018-04-18 23:05 风吹屁股凉冰冰 阅读(260) 评论(0) 推荐(0) 编辑
摘要:header('Access-Control-Allow-Origin:*'); $access_token = !empty($_GET['access_token'])?$_GET['access_token']:''; $openid = !empty($_GET['openid'])?$_GET['openid']:''; //该微信url不允许前端ajax直接访问,只能由本地后端访问获取数据,再通过ajax传给前端 阅读全文
posted @ 2018-04-18 23:02 风吹屁股凉冰冰 阅读(2416) 评论(0) 推荐(0) 编辑
摘要:FromUserName;//o5-P4snElQIi859NmTB3bZ_ryGF0 //判断扫码前是否已关注微信公众号 $EventKey = trim((string)$postObj->EventKey); $keyArray = explode("_", $EventKey); if (count($keyArray) == 1){ //扫码前... 阅读全文
posted @ 2018-04-18 23:00 风吹屁股凉冰冰 阅读(290) 评论(0) 推荐(0) 编辑
摘要:jssdk.php页,主要获取token和ticket access_token.php页,保存获取的token jsapi_ticket.php页,保存获取的ticket index.php页,前端调用页 阅读全文
posted @ 2018-01-23 23:15 风吹屁股凉冰冰 阅读(2188) 评论(0) 推荐(1) 编辑
摘要:<?php //比如当前页面要返回404状态码 header("HTTP/1.1 404 Not Found"); header("Status: 404 Not Found"); 阅读全文
posted @ 2017-08-31 08:09 风吹屁股凉冰冰 阅读(976) 评论(0) 推荐(0) 编辑
摘要:getProperties ()->setCreator ( "zend" )-> // 作者 setLastModifiedBy ( "zend" )-> // 最后一次保存者 setTitle ( "Office 2007 XLSX Document" )-> // 标题 setSubject ( "Office 2007 XLSX Document" )-> // 主题 setDescri... 阅读全文
posted @ 2017-08-29 15:15 风吹屁股凉冰冰 阅读(3710) 评论(0) 推荐(0) 编辑
摘要:将D:\ApacheServer\php路径添加到环境变量path中,在cmd命令行中可以执行php命令 打开php.ini 打开extension=php_openssl.dll file_put_contents才能访问https网站 cmd定位到指定目录下输入这里是 D:\ApacheServer\web php -r "file_put_contents('symfony', fi... 阅读全文
posted @ 2017-06-12 16:19 风吹屁股凉冰冰 阅读(230) 评论(0) 推荐(0) 编辑