index.php

来自「视频监控网络部分的协议ddns,的模块的实现代码,请大家大胆指正.」· PHP 代码 · 共 38 行

PHP
38
字号
<?php$dbtypes = array(    'mysql' => 'Mysql',    'pgsql' => 'PostgreSQL',    'ibase' => 'Firebird/Interbase',);$tests = array(    'all_tests.php'                  => '<b>All tests</b>',    'mdb_querytool_tests_get.php'    => '<b>All get*() tests</b>',    'mdb_querytool_tests_usage.php'  => '<b>All usage tests</b>',    'mdb_querytool_testGet.php'      => 'testGet',    'mdb_querytool_testGetAll.php'   => 'testGetAll',    'mdb_querytool_testGetCount.php' => 'testGetCount',    'mdb_querytool_testGetQueryString.php' => 'testGetQueryString',    'mdb_querytool_testHaving.php'   => 'testHaving',    'mdb_querytool_testLimit.php'    => 'testLimit',    'mdb_querytool_testWhere.php'    => 'testWhere',);?><h1>MDB_QueryTool tests</h1><ul><?phpforeach ($dbtypes as $dbtype => $dbname) {    echo '<li><h2>'.$dbname.'</h2><ul>';    foreach ($tests as $testfile => $testname) {        echo '<li><a href="'.$testfile.'?type='.$dbtype.'">'.$testname.'</a></li>';    }    echo '</ul></li>';}?></ul>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?