实例介绍
微信公众号/小程序整套程序源码(含微信支付/网页)
【实例截图】
【核心代码】
f9a439ce-b625-4ea7-981c-94fa80a23d31
└── wechat-book-master
├── application
│ ├── cache
│ │ └── index.html
│ ├── config
│ │ ├── autoload.php
│ │ ├── config.php
│ │ ├── constants.php
│ │ ├── database.php
│ │ ├── development
│ │ │ ├── database.php
│ │ │ ├── my.php
│ │ │ ├── redis.php
│ │ │ └── wechat.php
│ │ ├── hooks.php
│ │ ├── index.html
│ │ ├── production
│ │ │ ├── database.php
│ │ │ ├── my.php
│ │ │ ├── redis.php
│ │ │ └── wechat.php
│ │ ├── routes.php
│ │ ├── testing
│ │ │ ├── database.php
│ │ │ ├── my.php
│ │ │ ├── redis.php
│ │ │ └── wechat.php
│ │ └── user_agents.php
│ ├── controllers
│ │ ├── Anynote.php
│ │ ├── Auth.php
│ │ ├── Crontable.php
│ │ ├── Home.php
│ │ ├── index.html
│ │ ├── Miniapp.php
│ │ ├── User.php
│ │ ├── Welcome.php
│ │ ├── Wx_Api.php
│ │ └── Wxpay.php
│ ├── core
│ │ ├── index.html
│ │ ├── MY_Controller.php
│ │ ├── MY_Loader.php
│ │ └── MY_Model.php
│ ├── helpers
│ │ ├── index.html
│ │ └── wechat_helper.php
│ ├── hooks
│ │ └── index.html
│ ├── index.html
│ ├── index.php
│ ├── language
│ │ ├── english
│ │ │ └── index.html
│ │ └── index.html
│ ├── libraries
│ │ ├── auth
│ │ │ ├── Authbase.php
│ │ │ └── Wechatauth.php
│ │ ├── index.html
│ │ ├── Myapi.php
│ │ ├── Restclient.php
│ │ │ └── Wechatools.php
│ │ ├── Wechat1.php
│ │ └── Wechat.php
│ ├── logs
│ │ └── index.html
│ ├── models
│ │ ├── index.html
│ │ ├── M_social_binder.php
│ │ ├── M_talk.php
│ │ ├── M_user.php
│ │ └── M_wx_img.php
│ ├── resource
│ │ ├── css
│ │ │ └── weui
│ │ │ ├── example.css
│ │ │ └── weui.css
│ │ ├── images
│ │ │ ├── demo
│ │ │ │ ├── admin-bg-1.jpg
│ │ │ │ ├── admin-bg-2.jpg
│ │ │ │ ├── admin-bg-3.jpg
│ │ │ │ └── audi-rs7-05.jpg
│ │ │ └── weui
│ │ │ ├── icon_footer_link.png
│ │ │ ├── icon_footer.png
│ │ │ ├── icon_intro.png
│ │ │ ├── icon_nav_actionSheet.png
│ │ │ ├── icon_nav_article.png
│ │ │ ├── icon_nav_button.png
│ │ │ ├── icon_nav_cell.png
│ │ │ ├── icon_nav_dialog.png
│ │ │ ├── icon_nav_feedback.png
│ │ │ ├── icon_nav_flow.png
│ │ │ ├── icon_nav_form.png
│ │ │ ├── icon_nav_icons.png
│ │ │ ├── icon_nav_layout.png
│ │ │ ├── icon_nav_msg.png
│ │ │ ├── icon_nav_nav.png
│ │ │ ├── icon_nav_panel.png
│ │ │ ├── icon_nav_progress.png
│ │ │ ├── icon_nav_search_bar.png
│ │ │ ├── icon_nav_search.png
│ │ │ ├── icon_nav_special.png
│ │ │ ├── icon_nav_tab.png
│ │ │ ├── icon_nav_toast.png
│ │ │ ├── icon_nav_z-index.png
│ │ │ ├── icon_nav_zindex.png
│ │ │ ├── icon_tabbar.png
│ │ │ ├── layers
│ │ │ │ ├── content.png
│ │ │ │ ├── navigation.png
│ │ │ │ ├── popout.png
│ │ │ │ └── transparent.gif
│ │ │ ├── logo.png
│ │ │ ├── pic_160.png
│ │ │ ├── pic_article.png
│ │ │ └── vcode.jpg
│ │ └── js
│ │ ├── main.js
│ │ └── weui
│ │ ├── example.js
│ │ ├── weui.min.js
│ │ └── zepto.min.js
│ ├── service
│ │ ├── s_anynote_img.php
│ │ ├── s_anynote_txt.php
│ │ ├── s_social_binder.php
│ │ ├── s_talkingrobot.php
│ │ └── s_test.php
│ ├── third_party
│ │ ├── index.html
│ │ ├── miniapp
│ │ │ ├── errorCode.php
│ │ │ ├── pkcs7Encoder.php
│ │ │ └── wxBizDataCrypt.php
│ │ │ └── wechat.class.php
│ │ └── wxpay
│ │ ├── doc
│ │ │ ├── README
│ │ │ └── README.doc
│ │ ├── example
│ │ │ ├── download.php
│ │ │ ├── jsapi.php
│ │ │ ├── log.php
│ │ │ ├── micropay.php
│ │ │ ├── native_notify.php
│ │ │ ├── native.php
│ │ │ ├── notify.php
│ │ │ ├── orderquery.php
│ │ │ ├── phpqrcode
│ │ │ │ └── phpqrcode.php
│ │ │ ├── qrcode.php
│ │ │ ├── refund.php
│ │ │ ├── refundquery.php
│ │ │ ├── WxPay.JsApiPay.php
│ │ │ ├── WxPay.MicroPay.php
│ │ │ └── WxPay.NativePay.php
│ │ ├── image
│ │ │ ├── bk.png
│ │ │ ├── image001.jpg
│ │ │ └── image002.png
│ │ ├── index.php
│ │ ├── lib
│ │ │ ├── WxPay.Api.php
│ │ │ ├── WxPay.Config.php
│ │ │ ├── WxPay.Data.php
│ │ │ ├── WxPay.Exception.php
│ │ │ └── WxPay.Notify.php
│ │ ├── WxPay.JsApiPay.php
│ │ └── WxPay.Notify.php
│ └── views
│ ├── anynote
│ │ └── preview_images.php
│ ├── 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
│ ├── home
│ │ ├── index.php
│ │ └── post.php
│ ├── index.html
│ ├── layout
│ │ └── _main.php
│ ├── user
│ │ ├── bind.php
│ │ └── index.php
│ ├── welcome_message.php
│ └── wxpay
│ └── index.php
├── README.md
├── system
│ ├── config
│ │ ├── autoload.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
│ ├── 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
│ │ ├── Service.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
└── 新建文本文档.txt
76 directories, 377 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论