002.phpt
来自「php-4.4.7学习linux时下载的源代码」· PHPT 代码 · 共 18 行
PHPT
18 行
--TEST--DBM Insert/Fetch Test--SKIPIF--<?php if (!extension_loaded("db")) print "skip";?>--FILE--<?php require_once('test.inc'); if (dbmopen($db_file, "n")) { dbminsert($db_file, "key1", "This is a test insert"); echo dbmfetch($db_file, "key1"); dbmclose($db_file); } else { echo "Error creating database\n"; }?>--EXPECT--This is a test insert
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?