【实例简介】

开源,可部署使用,学习好资料。包含微信小程序客户端还有后台PHP源码。

【实例截图】

【核心代码】

微信小程序源码PHP后台

└── 微信小程序源码+PHP后台

├── __MACOSX

│   └── wafer-client-demo-master

│   ├── pages

│   │   ├── chat

│   │   └── index

│   └── vendor

│   └── qcloud-weapp-client-sdk

│   └── lib

├── wafer-client-demo-master

│   ├── app.js

│   ├── app.json

│   ├── bower.json

│   ├── config.js

│   ├── LICENSE

│   ├── package.json

│   ├── pages

│   │   ├── chat

│   │   │   ├── chat.js

│   │   │   ├── chat.wxml

│   │   │   └── chat.wxss

│   │   └── index

│   │   ├── index.js

│   │   ├── index.wxml

│   │   └── index.wxss

│   ├── README.md

│   └── vendor

│   └── qcloud-weapp-client-sdk

│   ├── bower.json

│   ├── index.js

│   ├── lib

│   │   ├── constants.js

│   │   ├── login.js

│   │   ├── request.js

│   │   ├── session.js

│   │   ├── tunnel.js

│   │   ├── utils.js

│   │   └── wxTunnel.js

│   ├── LICENSE

│   └── README.md

├── wafer-client-demo-master.zip

├── wafer-master

│   ├── LICENSE

│   └── README.md

├── wafer-master.zip

├── wafer-php-server-demo-master

│   └── wafer-php-server-demo-master

│   ├── application

│   │   ├── business

│   │   │   └── ChatTunnelHandler.php

│   │   ├── cache

│   │   │   └── index.html

│   │   ├── config

│   │   │   ├── autoload.php

│   │   │   ├── config.php

│   │   │   ├── constants.php

│   │   │   ├── database.php

│   │   │   ├── doctypes.php

│   │   │   ├── foreign_chars.php

│   │   │   ├── hooks.php

│   │   │   ├── index.html

│   │   │   ├── memcached.php

│   │   │   ├── migration.php

│   │   │   ├── mimes.php

│   │   │   ├── profiler.php

│   │   │   ├── routes.php

│   │   │   ├── smileys.php

│   │   │   └── user_agents.php

│   │   ├── controllers

│   │   │   ├── index.html

│   │   │   ├── Login.php

│   │   │   ├── Tunnel.php

│   │   │   ├── User.php

│   │   │   └── Welcome.php

│   │   ├── core

│   │   │   └── index.html

│   │   ├── helpers

│   │   │   ├── general_helper.php

│   │   │   └── index.html

│   │   ├── hooks

│   │   │   └── index.html

│   │   ├── index.html

│   │   ├── language

│   │   │   ├── english

│   │   │   │   └── index.html

│   │   │   └── index.html

│   │   ├── libraries

│   │   │   └── index.html

│   │   ├── logs

│   │   │   └── index.html

│   │   ├── models

│   │   │   └── index.html

│   │   ├── third_party

│   │   │   └── index.html

│   │   └── views

│   │   ├── errors

│   │   │   ├── cli

│   │   │   │   ├── error_404.php

│   │   │   │   ├── error_db.php

│   │   │   │   ├── error_exception.php

│   │   │   │   ├── error_general.php

│   │   │   │   ├── error_php.php

│   │   │   │   └── index.html

│   │   │   ├── html

│   │   │   │   ├── error_404.php

│   │   │   │   ├── error_db.php

│   │   │   │   ├── error_exception.php

│   │   │   │   ├── error_general.php

│   │   │   │   ├── error_php.php

│   │   │   │   └── index.html

│   │   │   └── index.html

│   │   ├── index.html

│   │   └── welcome_message.php

│   ├── composer.json

│   ├── index.php

│   ├── install_qcloud_sdk.php

│   ├── LICENSE

│   ├── README.md

│   └── system

│   ├── core

│   │   ├── Benchmark.php

│   │   ├── CodeIgniter.php

│   │   ├── Common.php

│   │   ├── compat

│   │   │   ├── hash.php

│   │   │   ├── index.html

│   │   │   ├── mbstring.php

│   │   │   ├── password.php

│   │   │   └── standard.php

│   │   ├── Config.php

│   │   ├── Controller.php

│   │   ├── Exceptions.php

│   │   ├── Hooks.php

│   │   ├── index.html

│   │   ├── Input.php

│   │   ├── Lang.php

│   │   ├── Loader.php

│   │   ├── Log.php

│   │   ├── Model.php

│   │   ├── Output.php

│   │   ├── Router.php

│   │   ├── Security.php

│   │   ├── URI.php

│   │   └── Utf8.php

│   ├── database

│   │   ├── DB_cache.php

│   │   ├── DB_driver.php

│   │   ├── DB_forge.php

│   │   ├── DB.php

│   │   ├── DB_query_builder.php

│   │   ├── DB_result.php

│   │   ├── DB_utility.php

│   │   ├── drivers

│   │   │   ├── cubrid

│   │   │   │   ├── cubrid_driver.php

│   │   │   │   ├── cubrid_forge.php

│   │   │   │   ├── cubrid_result.php

│   │   │   │   ├── cubrid_utility.php

│   │   │   │   └── index.html

│   │   │   ├── ibase

│   │   │   │   ├── ibase_driver.php

│   │   │   │   ├── ibase_forge.php

│   │   │   │   ├── ibase_result.php

│   │   │   │   ├── ibase_utility.php

│   │   │   │   └── index.html

│   │   │   ├── index.html

│   │   │   ├── mssql

│   │   │   │   ├── index.html

│   │   │   │   ├── mssql_driver.php

│   │   │   │   ├── mssql_forge.php

│   │   │   │   ├── mssql_result.php

│   │   │   │   └── mssql_utility.php

│   │   │   ├── mysql

│   │   │   │   ├── index.html

│   │   │   │   ├── mysql_driver.php

│   │   │   │   ├── mysql_forge.php

│   │   │   │   ├── mysql_result.php

│   │   │   │   └── mysql_utility.php

│   │   │   ├── mysqli

│   │   │   │   ├── index.html

│   │   │   │   ├── mysqli_driver.php

│   │   │   │   ├── mysqli_forge.php

│   │   │   │   ├── mysqli_result.php

│   │   │   │   └── mysqli_utility.php

│   │   │   ├── oci8

│   │   │   │   ├── index.html

│   │   │   │   ├── oci8_driver.php

│   │   │   │   ├── oci8_forge.php

│   │   │   │   ├── oci8_result.php

│   │   │   │   └── oci8_utility.php

│   │   │   ├── odbc

│   │   │   │   ├── index.html

│   │   │   │   ├── odbc_driver.php

│   │   │   │   ├── odbc_forge.php

│   │   │   │   ├── odbc_result.php

│   │   │   │   └── odbc_utility.php

│   │   │   ├── pdo

│   │   │   │   ├── index.html

│   │   │   │   ├── pdo_driver.php

│   │   │   │   ├── pdo_forge.php

│   │   │   │   ├── pdo_result.php

│   │   │   │   ├── pdo_utility.php

│   │   │   │   └── subdrivers

│   │   │   │   ├── index.html

│   │   │   │   ├── pdo_4d_driver.php

│   │   │   │   ├── pdo_4d_forge.php

│   │   │   │   ├── pdo_cubrid_driver.php

│   │   │   │   ├── pdo_cubrid_forge.php

│   │   │   │   ├── pdo_dblib_driver.php

│   │   │   │   ├── pdo_dblib_forge.php

│   │   │   │   ├── pdo_firebird_driver.php

│   │   │   │   ├── pdo_firebird_forge.php

│   │   │   │   ├── pdo_ibm_driver.php

│   │   │   │   ├── pdo_ibm_forge.php

│   │   │   │   ├── pdo_informix_driver.php

│   │   │   │   ├── pdo_informix_forge.php

│   │   │   │   ├── pdo_mysql_driver.php

│   │   │   │   ├── pdo_mysql_forge.php

│   │   │   │   ├── pdo_oci_driver.php

│   │   │   │   ├── pdo_oci_forge.php

│   │   │   │   ├── pdo_odbc_driver.php

│   │   │   │   ├── pdo_odbc_forge.php

│   │   │   │   ├── pdo_pgsql_driver.php

│   │   │   │   ├── pdo_pgsql_forge.php

│   │   │   │   ├── pdo_sqlite_driver.php

│   │   │   │   ├── pdo_sqlite_forge.php

│   │   │   │   ├── pdo_sqlsrv_driver.php

│   │   │   │   └── pdo_sqlsrv_forge.php

│   │   │   ├── postgre

│   │   │   │   ├── index.html

│   │   │   │   ├── postgre_driver.php

│   │   │   │   ├── postgre_forge.php

│   │   │   │   ├── postgre_result.php

│   │   │   │   └── postgre_utility.php

│   │   │   ├── sqlite

│   │   │   │   ├── index.html

│   │   │   │   ├── sqlite_driver.php

│   │   │   │   ├── sqlite_forge.php

│   │   │   │   ├── sqlite_result.php

│   │   │   │   └── sqlite_utility.php

│   │   │   ├── sqlite3

│   │   │   │   ├── index.html

│   │   │   │   ├── sqlite3_driver.php

│   │   │   │   ├── sqlite3_forge.php

│   │   │   │   ├── sqlite3_result.php

│   │   │   │   └── sqlite3_utility.php

│   │   │   └── sqlsrv

│   │   │   ├── index.html

│   │   │   ├── sqlsrv_driver.php

│   │   │   ├── sqlsrv_forge.php

│   │   │   ├── sqlsrv_result.php

│   │   │   └── sqlsrv_utility.php

│   │   └── index.html

│   ├── fonts

│   │   ├── index.html

│   │   └── texb.ttf

│   ├── helpers

│   │   ├── array_helper.php

│   │   ├── captcha_helper.php

│   │   ├── cookie_helper.php

│   │   ├── date_helper.php

│   │   ├── directory_helper.php

│   │   ├── download_helper.php

│   │   ├── email_helper.php

│   │   ├── file_helper.php

│   │   ├── form_helper.php

│   │   ├── html_helper.php

│   │   ├── index.html

│   │   ├── inflector_helper.php

│   │   ├── language_helper.php

│   │   ├── number_helper.php

│   │   ├── path_helper.php

│   │   ├── security_helper.php

│   │   ├── smiley_helper.php

│   │   ├── string_helper.php

│   │   ├── text_helper.php

│   │   ├── typography_helper.php

│   │   ├── url_helper.php

│   │   └── xml_helper.php

│   ├── index.html

│   ├── language

│   │   ├── english

│   │   │   ├── calendar_lang.php

│   │   │   ├── date_lang.php

│   │   │   ├── db_lang.php

│   │   │   ├── email_lang.php

│   │   │   ├── form_validation_lang.php

│   │   │   ├── ftp_lang.php

│   │   │   ├── imglib_lang.php

│   │   │   ├── index.html

│   │   │   ├── migration_lang.php

│   │   │   ├── number_lang.php

│   │   │   ├── pagination_lang.php

│   │   │   ├── profiler_lang.php

│   │   │   ├── unit_test_lang.php

│   │   │   └── upload_lang.php

│   │   └── index.html

│   └── libraries

│   ├── Cache

│   │   ├── Cache.php

│   │   ├── drivers

│   │   │   ├── Cache_apc.php

│   │   │   ├── Cache_dummy.php

│   │   │   ├── Cache_file.php

│   │   │   ├── Cache_memcached.php

│   │   │   ├── Cache_redis.php

│   │   │   ├── Cache_wincache.php

│   │   │   └── index.html

│   │   └── index.html

│   ├── Calendar.php

│   ├── Cart.php

│   ├── Driver.php

│   ├── Email.php

│   ├── Encryption.php

│   ├── Encrypt.php

│   ├── Form_validation.php

│   ├── Ftp.php

│   ├── Image_lib.php

│   ├── index.html

│   ├── Javascript

│   │   ├── index.html

│   │   └── Jquery.php

│   ├── Javascript.php

│   ├── Migration.php

│   ├── Pagination.php

│   ├── Parser.php

│   ├── Profiler.php

│   ├── Session

│   │   ├── drivers

│   │   │   ├── index.html

│   │   │   ├── Session_database_driver.php

│   │   │   ├── Session_files_driver.php

│   │   │   ├── Session_memcached_driver.php

│   │   │   └── Session_redis_driver.php

│   │   ├── index.html

│   │   ├── Session_driver.php

│   │   ├── SessionHandlerInterface.php

│   │   └── Session.php

│   ├── Table.php

│   ├── Trackback.php

│   ├── Typography.php

│   ├── Unit_test.php

│   ├── Upload.php

│   ├── User_agent.php

│   ├── Xmlrpc.php

│   ├── Xmlrpcs.php

│   └── Zip.php

├── wafer-php-server-demo-master.zip

└── wafer-session-server-master.zip

65 directories, 284 files

php qcloud sdk weapp_微信小程序源码+PHP后台相关推荐

  1. php qcloud sdk weapp_微信小程序腾讯云php后台解决方案

    微信小程序腾讯云php后台解决方案 微信小程序前段需要添加必要的文件以配合后端 (1)wafer2-client-sdk sdk提供了几种接口包括登陆,获取用户openid,图片上传等 (2)conf ...

  2. android源码大全 IOS游戏源代码打包下载 小游戏|视频教程 微信小程序源码带后台全套|公众号平台

    不断更新中,下面是2017-12-22更新部分 IOS_源码及视频一小部分: 开发环境:Xcode 基于cocos2d的tweejump跳跃游戏ios经典游戏源码.rar  https://pan.b ...

  3. 1000套微信小程序源码源代码带后台带运行截图预览图学习资料网盘下载

    1000多套微信小程序源码带后台+教程+不同行业的源码集合 o2o行业 | - 盒马鲜生 | - 轻客洗衣 互联网行业 | - 云文档 | - 仿ofo共享单车 | - 仿美团外卖 | - 仿饿了么 ...

  4. 功能强大UI美观的视频答题猜歌闯关娱乐微信小程序源码

    正文: 功能强大UI美观的视频答题猜歌闯关娱乐微信小程序源码下载 后台管理资源本地化带数据和视频教程,这是一款拥有后端的闯关娱乐小程序. 支持个人小程序和企业小程序上线运营 功能强大齐全,带数据本地化 ...

  5. 2000套微信微信小程序源码+抖音微信小程序源码附开源代码

    授权微信小程序SDK(authing-wxapp-sdk)适用于微信微信小程序(打开新窗口)基于微信微信小程序环境.可以使用微信微信小程序源码中的所有方法,比如Get,修改用户信息,添加用户自定义字段 ...

  6. 微信小程序 小程序源码包括后台完整版分享

    需要的留邮箱 免费发! 版权归作者所有,任何形式转载请联系作者. 作者:执波仔丶(csdn博客) 最新收集的60个微信小程序源码分享+开发视频教程最新收集的60个微信小程序源码分享+开发视频教程最新收 ...

  7. 修复版超强大微信小程序源码-内含几十款功能王者战力查询

    介绍: 这是一款特别强大的一款微信小程序源码,初步算了一下,该款小程序目前包含了几十个功能. 具体功能如以下: 游戏扫码登录: 王者战力查询: 改名生成(多种生成方式): 头像框制作(N款模板): 王 ...

  8. 只需两步快速获取微信小程序源码

    第一次在掘金这样高大上的社区写文章,忐忑地敲下我获取小程序源码过程中的经验分享. 最近在学习微信小程序开发,半个月学习下来,很想实战一下踩踩坑,于是就仿写了某个小程序的前端实现,过程一言难尽,差不多两 ...

  9. 反编译获取线上任何微信小程序源码(转)

    看到人家上线的小程序的效果,纯靠推测,部分效果在绞尽脑汁后能做出大致的实现,但是有些细节,费劲全力都没能做出来.很想一窥源码?查看究竟?看看大厂的前端大神们是如何规避了小程序的各种奇葩的坑?那么赶紧来 ...

最新文章

  1. php 尾递归,关于尾递归的使用详解
  2. “时隔 10 年,重新开始写代码的我要崩溃了!”
  3. cocoJS配置文件:project.json
  4. Android kotlin DataBinding 之 unresolved reference: BR
  5. 怎么捡自己空投_使命召唤手游空投怎么快速找到?使命召唤手游快速找到空投技巧...
  6. 右击菜单一键优化(增加新建office2003、新建reg和bat,删除新建公文包、新建wps、新建rar)...
  7. [轉]winrar的命令行
  8. lucene-SpanQuery跨度查询基础
  9. Activiti教程(一)activiti工作流简介
  10. 英文java简历模板下载_JAVA技术人员英文简历模板
  11. 文件上传和下载的常用测试点
  12. duilib开发(七):复杂控件介绍
  13. Android音频系统之音频框架
  14. Matlab学习笔记9.3:Matlab之神经网络模型
  15. 苏世民:顶尖领导者的52条法则
  16. 计算机网络基本设备及网络拓扑图
  17. Xcode cannot launch because the device is locked.
  18. 阿里云备案流程、操作步骤及所需时间图文详解
  19. 9104年了,你还中毒?—— Synaptics.exe 中毒小记
  20. 通过父级id 递归找到所有子类

热门文章

  1. 同类型的mapping不上
  2. winform窗体控件多,加载慢、卡顿的解决办法
  3. TCP/IP协议讲的明明白白
  4. MFC动态按钮的创建及其消息响应 和 自定义消息
  5. stc单片机入门c语言,谈谈单片机入门
  6. 文件存取方式是哪两种python_常用的Python存储方式有哪些?
  7. 计算机应用基础第2版在线作业1,计算机应用基础(第2版)在线作业(1)
  8. spi四种工作模式时序图_SPI总线协议及SPI时序图详解
  9. 扒几个 3D 模型备用
  10. Failed to capture snapshot of output files for task ':UserAppModule:packagePreDebug' property 'outpu