How to modify the destoon SMS interface_PHP tutorial
destoon is an excellent B2B industry website program. The modular development of the program is very compatible, and secondary development is also very smooth. Data caching, permission allocation, and SEO functions are all good.
But when using this program, you often need to use the function of sending text messages, and destoon itself only has access to its own text message interface. Some developers who are new to destoon don't know how to modify it.
So Tieniu hereby writes a document to share how to modify destoon and how to access the external SMS interface.
Step one: Find the /include/global.func.php file and search for the function send_sms
Modify function send_sms to function send_sms_back and create a new function send_sms
<span 1</span> <span function</span> send_sms(<span $mobile</span>, <span $message</span>, <span $word</span> = 0, <span $time</span> = 0<span ){ </span><span 2</span> <span global</span> <span $db</span>, <span $DT</span>, <span $DT_TIME</span>, <span $DT_IP</span>, <span $_username</span><span ; </span><span 3</span> <span if</span>(!<span $DT</span>['sms'] || !<span $DT</span>['sms_uid'] || !<span $DT</span>['sms_key']) <span return</span> <span false</span><span ; </span><span 4</span> <span $sms_url</span> = 'http://app.com/test/sms.php';<span //</span><span 你的短信接口地址 </span><span 5</span> <span //例如你的短信接口是http://app.com/test/sms.php?username=athena&pwd=123456&mobile=15889726201&msg=我的测试短信内容</span> <span 6</span> <span 7</span> <span $word</span> or <span $word</span> = word_count(<span $message</span><span ); </span><span 8</span> <span $sms_message</span> = <span rawurlencode</span>(convert(<span $message</span>, DT_CHARSET, 'UTF-8'<span )); </span><span 9</span> <span //</span><span data是你的url字符串 例如:username=athena&pwd=123456&mobile=15889726201&msg=我的测试短信内容</span> <span 10</span> <span $data</span> = 'username='.<span $DT</span>['sms_uid'<span ] </span><span 11</span> . '&pwd='.<span $DT</span>['sms_key'<span ] </span><span 12</span> . '&mobile='.<span $mobile</span> <span 13</span> . '&msg='.<span $sms_message</span><span ; </span><span 14</span> <span 15</span> <span //</span><span 采用PHP的cURL库推送网页 </span> <span 16</span> <span $cur</span> = curl_init(<span $sms_url</span><span ); </span><span 17</span> curl_setopt(<span $cur</span>, CURLOPT_POST, 1<span ); </span><span 18</span> curl_setopt(<span $cur</span>, CURLOPT_POSTFIELDS, <span $data</span><span ); </span><span 19</span> curl_setopt(<span $cur</span>, CURLOPT_FOLLOWLOCATION, 1<span ); </span><span 20</span> curl_setopt(<span $cur</span>, CURLOPT_HEADER, 0<span ); </span><span 21</span> curl_setopt(<span $cur</span>, CURLOPT_SSL_VERIFYPEER, 0<span ); </span><span 22</span> curl_setopt(<span $cur</span>, CURLOPT_RETURNTRANSFER, 1<span ); </span><span 23</span> <span $rec</span> = curl_exec(<span $cur</span><span ); </span><span 24</span> curl_close(<span $cur</span><span ); </span><span 25</span> <span $code</span>=''<span ; </span><span 26</span> <span if</span>(!<span $rec</span>==<span $DT</span>['sms_ok'<span ]){ </span><span 27</span> <span $code</span> = 'Can Not Connect SMS Server'<span ; </span><span 28</span> <span } </span><span 29</span> <span else</span><span { </span><span 30</span> <span $code</span> =<span $DT</span>['sms_ok'<span ]; </span><span 31</span> <span } </span><span 32</span> <span 33</span> <span $db</span>->query("INSERT INTO {<span $db</span>->pre}sms (mobile,message,word,editor,sendtime,code) VALUES ('<span $mobile</span>','<span $message</span>','<span $word</span>','<span $_username</span>','<span $DT_TIME</span>','<span $code</span>')"<span ); </span><span 34</span> <span 35</span> <span return</span> <span $code</span><span ; </span><span 36</span> }
Step 2: Set SMS return value
My SMS interface address is: http://app.com/test/sms.php. If the SMS is sent successfully, the message is success. This successfully sent message needs to be set in the destoon management background
Tip: If your curl_init() function is not available
Find php.ini, modify extension=php_curl.dll and remove the preceding semicolon
If your php library does not have php_curl.dll, then copy php_curl.dll php5ts.dlllibeay32.dll ssleay32.dll to windows Just restart the IIS or Apache service under /system32.
destoon development communication group number: 98537090

Thedifferencebetweenunset()andsession_destroy()isthatunset()clearsspecificsessionvariableswhilekeepingthesessionactive,whereassession_destroy()terminatestheentiresession.1)Useunset()toremovespecificsessionvariableswithoutaffectingthesession'soveralls

Stickysessionsensureuserrequestsareroutedtothesameserverforsessiondataconsistency.1)SessionIdentificationassignsuserstoserversusingcookiesorURLmodifications.2)ConsistentRoutingdirectssubsequentrequeststothesameserver.3)LoadBalancingdistributesnewuser

PHPoffersvarioussessionsavehandlers:1)Files:Default,simplebutmaybottleneckonhigh-trafficsites.2)Memcached:High-performance,idealforspeed-criticalapplications.3)Redis:SimilartoMemcached,withaddedpersistence.4)Databases:Offerscontrol,usefulforintegrati

Session in PHP is a mechanism for saving user data on the server side to maintain state between multiple requests. Specifically, 1) the session is started by the session_start() function, and data is stored and read through the $_SESSION super global array; 2) the session data is stored in the server's temporary files by default, but can be optimized through database or memory storage; 3) the session can be used to realize user login status tracking and shopping cart management functions; 4) Pay attention to the secure transmission and performance optimization of the session to ensure the security and efficiency of the application.

PHPsessionsstartwithsession_start(),whichgeneratesauniqueIDandcreatesaserverfile;theypersistacrossrequestsandcanbemanuallyendedwithsession_destroy().1)Sessionsbeginwhensession_start()iscalled,creatingauniqueIDandserverfile.2)Theycontinueasdataisloade

Absolute session timeout starts at the time of session creation, while an idle session timeout starts at the time of user's no operation. Absolute session timeout is suitable for scenarios where strict control of the session life cycle is required, such as financial applications; idle session timeout is suitable for applications that want users to keep their session active for a long time, such as social media.

The server session failure can be solved through the following steps: 1. Check the server configuration to ensure that the session is set correctly. 2. Verify client cookies, confirm that the browser supports it and send it correctly. 3. Check session storage services, such as Redis, to ensure that they are running normally. 4. Review the application code to ensure the correct session logic. Through these steps, conversation problems can be effectively diagnosed and repaired and user experience can be improved.

session_start()iscrucialinPHPformanagingusersessions.1)Itinitiatesanewsessionifnoneexists,2)resumesanexistingsession,and3)setsasessioncookieforcontinuityacrossrequests,enablingapplicationslikeuserauthenticationandpersonalizedcontent.


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

SublimeText3 English version
Recommended: Win version, supports code prompts!

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Dreamweaver CS6
Visual web development tools

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft
