视频监控网络部分的协议ddns,的模块的实现代码,请大家大胆指正.

源代码在线查看: test.php

软件大小: 62625 K
上传用户: qqwoshi
关键词: ddns 视频监控 网络
下载地址: 免注册下载 普通下载 VIP

相关代码

												// Test script of Cache_Lite				// $Id: test.php,v 1.5 2002/09/28 18:05:29 fab Exp $								require_once('Cache/Lite.php');								$options = array(				    'cacheDir' => '/tmp/',				    'lifeTime' => 10				);								$Cache_Lite = new Cache_Lite($options);								if ($data = $Cache_Lite->get('123')) {				    echo('Cache Hit !');				    echo($data);				} else {				    echo('Cache Missed !');				    $data = '';				    for($i=0;$i				        $data .= '0123456789';				    }				    echo($data);				    $Cache_Lite->save($data);				}								?>			

相关资源