📄 index.php
字号:
<?php/* This file is part of PHP test framework for ext/sybase_ct * * $Id: index.php,v 1.3 2005/02/06 14:08:11 thekid Exp $ */ // {{{ class PHPTExpectancy // Abstract base class for expectancies class PHPTExpectancy { var $expected = ''; function PHPTExpectancy($expected) { $this->expected= $expected; } function matches($output) { } } // }}} // {{{ class PHPTRegexExpectancy // Expectancy class for regular expressions class PHPTRegexExpectancy extends PHPTExpectancy { function matches($output) { return preg_match('癪'.strtr(preg_quote(rtrim($this->expected), '
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -