searchmysql4test.php
来自「php 开发的内容管理系统」· PHP 代码 · 共 34 行
PHP
34 行
<?phprequire_once( 'SearchEngineTest.php' );require_once( '../includes/SearchMySQL4.php' );class SearchMySQL4Test extends SearchEngine_TestCase { var $db; function SearchMySQL4Test( $name ) { $this->PHPUnit_TestCase( $name ); } function setUp() { $GLOBALS['wgContLang'] = new LanguageUtf8; $this->db =& buildTestDatabase( 'mysql4', array( 'page', 'revision', 'text', 'searchindex' ) ); if( $this->db ) { $this->insertSearchData(); } $this->search =& new SearchMySQL4( $this->db ); } function tearDown() { if( !is_null( $this->db ) ) { $this->db->close(); } unset( $this->db ); unset( $this->search ); }}?>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?