Home  >  Article  >  Backend Development  >  How to modify the destoon SMS interface_PHP tutorial

How to modify the destoon SMS interface_PHP tutorial

WBOY
WBOYOriginal
2016-07-13 10:36:411112browse

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

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/738516.htmlTechArticledestoon 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 in...
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn