Home >Backend Development >PHP Tutorial >PHP开发一个短信接口,那么短信存在服务端那个地方呢?

PHP开发一个短信接口,那么短信存在服务端那个地方呢?

WBOY
WBOYOriginal
2016-06-06 20:26:051178browse

PHP开发一个短信接口,那么短信存在服务端那个地方呢?SESSION ?客户端调用API的时候没COOKIE,SESSION无法使用,那么应该如何保存呢?

回复内容:

PHP开发一个短信接口,那么短信存在服务端那个地方呢?SESSION ?客户端调用API的时候没COOKIE,SESSION无法使用,那么应该如何保存呢?

新建个表:

<code class="sql">CREATE TABLE `Captcha` IF NOT EXISTS {
   `id`        INT,
   `phone`     VARCHAR(15),
   `code`      VARCHAR(15),
   `status`    ENUM('Normal', 'Verified'),
   `expire`    DATETIME
);</code>

开发一个倒是不知道怎么做 一般现在都是用人家已经做好的(价格也还好最贵的应该是8分一条左右吧) 调用人家的接口 客户端的没有COOKIE SESSION 可以生成token方式 或者写文件的形式吧

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