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>', 'db_querytool_tests_get.php' => '<b>All get*() tests</b>', 'db_querytool_tests_usage.php' => '<b>All usage tests</b>', 'db_querytool_testGet.php' => 'testGet', 'db_querytool_testGetAll.php' => 'testGetAll', 'db_querytool_testGetCount.php' => 'testGetCount', 'db_querytool_testGetQueryString.php' => 'testGetQueryString', 'db_querytool_testHaving.php' => 'testHaving', 'db_querytool_testLimit.php' => 'testLimit', 'db_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 + -
显示快捷键?