Ejemplo n.º 1
0
 public function verify()
 {
     $voice_configs['appid'] = $this->appid;
     $voice_configs['appkey'] = $this->appkey;
     if ($this->sign_type != '') {
         $voice_configs['sign_type'] = $this->sign_type;
     }
     $voice = new voice($voice_configs);
     return $voice->verify($this->buildRequest());
 }
Ejemplo n.º 2
0
<?php

include_once __DIR__ . '/classes/voice.php';
$voice = new voice();
$voice->run();
?>
<!DOCTYPE html>
<meta charset="utf-8">
<title>voice</title>
<style>@import url(style.css);</style>
<form method="post">
  <input name="voice" type="text" x-webkit-speech>
</form>
<div class="input"></div>
<div class="output"></div>
<iframe></iframe>
<script src="http://www.google.com/jsapi"></script>
<script src="script.js"></script>