API接口学习---调用第三方接口进行内容加密PHP
内容加密
目录
-
查看API文档
-
工具
-
编写前端代码
-
编写PHP后端代码
-
结果
查看API文档
https://www.free-api.com/doc/382
工具
phpstudy php 7.3.4
firefox
编写前端代码
testapi.html
1行,为了防止页面乱码
2行,以get形式,将表单数据发送到testapi.php
编写PHP后端代码
testapi.php
行2,url中构造参数,分别为type和content,对应前端代码的<input type="text" name="type">和<input type="text" name="content">
行3,file_get_contents — 将整个文件读入一个字符串
行4,输入数组格式:
json_decode ( string $json , bool $assoc = false)
json为待解码的 json
string 格式的字符串。
assoc当该参数为 true 时,将返回 array 而非 object 。
行10,12,14,根据json格式获取的内容,进行编写
结果
加密的内容为11
加密算法为md5