Home php教程 PHP源码 使用PHP调用云验证码-印象码

使用PHP调用云验证码-印象码

May 25, 2016 pm 05:08 PM
php

印象码,www.yinxiangma.com,是国内最专业的第三方验证码安全防护解决方案提供商,将验证码安全技术、多媒体技术、精准广告投放技术、大数据处理技术及云计算技术结合起来,基于   SAAS  云计算的服务模式,为网站提供使用方便的、安全的、清晰的云验证码解决方案。

  印象码采用云计算、基于标示的验证码方法、用户行为分析、多重冗余等技术实现了独立的第三方验证码系统,来专门提供验证码服务,同时,采用各种安全机制和策略,为网站提供更好的安全防护。

请到官网注册申请自己的Key:http://www.yinxiangma.com  
印象码PHP_SDK下载地址:http://www.yinxiangma.com/sdk/PHP_3.0.rar


1. [代码]显示验证码    

<script type=&#39;text/javascript&#39; charset=&#39;gbk&#39;>
//*XXXXXX部分修改为自己的PUBLICK_KEY
var YXM_PUBLIC_KEY = &#39;XXXXXX&#39;; 
//*YYYYYY部分修改为应急策略路径,如http://www.php.cn/
var YXM_localsec_url = &#39;YYYYYY&#39;;
function YXM_local_check() 
{ 
if(typeof(YinXiangMaDataString)!=&#39;undefined&#39;)return; 
YXM_oldtag = document.getElementById(&#39;YXM_script&#39;); 
var YXM_local=document.createElement(&#39;script&#39;); 
YXM_local.setAttribute("type","text/javascript"); 
YXM_local.setAttribute("id","YXM_script"); 
YXM_local.setAttribute("src",YXM_localsec_url+&#39;yinxiangma.js?pk=&#39;+YXM_PUBLIC_KEY+&#39;&v=YinXiangMaPHPSDK_3.0&#39;); 
YXM_oldtag.parentNode.replaceChild(YXM_local,YXM_oldtag);  
} 
setTimeout("YXM_local_check()",2000); 
document.write("<input type=&#39;hidden&#39; id=&#39;YXM_here&#39; /><script type=&#39;text/javascript&#39; charset=&#39;gbk&#39; id=&#39;YXM_script&#39; async src=&#39;http://api.yinxiangma.com/api2/yzm.yinxiangma.php?pk="+YXM_PUBLIC_KEY+"&v=YinXiangMaPHPSDK_3.0&#39;><"+"/script>"); 
</script>
Copy after login

2. [代码]验证码校验-Step1

//打开YinXiangMaLibConfig.php文件,文件在下载的压缩包里: 
define("PRIVATE_KEY","XXXXXX"); 
//*注意将上面XXXXXX部分修改为自己的PRIVATE_KEY
Copy after login

3. [代码]验证码校验-Step2

<?php
//包含YinXiangMaLib.php文件到校验页面,文件在下载的压缩包里
require_once("YinXiangMaLib.php"); 
$YinXiangMa_response=YinXiangMa_ValidResult(@$_POST[&#39;YinXiangMa_challenge&#39;],@$_POST[&#39;YXM_level&#39;][0],@$_POST[&#39;YXM_input_result&#39;]); 
if($YinXiangMa_response == "true") { echo "Yes!";} 
else { echo "No!";} 
?>
Copy after login


Statement of this Website
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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

To work on file upload we are going to use the form helper. Here, is an example for file upload.

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

In this chapter, we are going to learn the following topics related to routing ?

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

Validator can be created by adding the following two lines in the controller.

CakePHP Working with Database CakePHP Working with Database Sep 10, 2024 pm 05:25 PM

Working with database in CakePHP is very easy. We will understand the CRUD (Create, Read, Update, Delete) operations in this chapter.

See all articles