本文整理汇总了PHP中highlightSearchTerms函数的典型用法代码示例。如果您正苦于以下问题:PHP highlightSearchTerms函数的具体用法?PHP highlightSearchTerms怎么用?PHP highlightSearchTerms使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了highlightSearchTerms函数的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: MYSQL_RESULT
$thisID = MYSQL_RESULT($result, $i, "ID");
$thisUSER = MYSQL_RESULT($result, $i, "USER");
$thisHOST = MYSQL_RESULT($result, $i, "HOST");
$thisDB = MYSQL_RESULT($result, $i, "DB");
$thisCOMMAND = MYSQL_RESULT($result, $i, "COMMAND");
$thisTIME = MYSQL_RESULT($result, $i, "TIME");
$thisSTATE = MYSQL_RESULT($result, $i, "STATE");
$thisINFO = MYSQL_RESULT($result, $i, "INFO");
$thisID = highlightSearchTerms($thisID, $thisKeyword, $highlightColor);
$thisUSER = highlightSearchTerms($thisUSER, $thisKeyword, $highlightColor);
$thisHOST = highlightSearchTerms($thisHOST, $thisKeyword, $highlightColor);
$thisDB = highlightSearchTerms($thisDB, $thisKeyword, $highlightColor);
$thisCOMMAND = highlightSearchTerms($thisCOMMAND, $thisKeyword, $highlightColor);
$thisTIME = highlightSearchTerms($thisTIME, $thisKeyword, $highlightColor);
$thisSTATE = highlightSearchTerms($thisSTATE, $thisKeyword, $highlightColor);
$thisINFO = highlightSearchTerms($thisINFO, $thisKeyword, $highlightColor);
?>
<TR BGCOLOR="<?php
echo $bgColor;
?>
">
<TD><?php
echo $thisID;
?>
</TD>
<TD><?php
echo $thisUSER;
?>
</TD>
<TD><?php
echo $thisHOST;
示例2: MYSQL_RESULT
$bgColor = "#C0C0C0";
}
$thisGRANTEE = MYSQL_RESULT($result, $i, "GRANTEE");
$thisTABLE_CATALOG = MYSQL_RESULT($result, $i, "TABLE_CATALOG");
$thisTABLE_SCHEMA = MYSQL_RESULT($result, $i, "TABLE_SCHEMA");
$thisTABLE_NAME = MYSQL_RESULT($result, $i, "TABLE_NAME");
$thisCOLUMN_NAME = MYSQL_RESULT($result, $i, "COLUMN_NAME");
$thisPRIVILEGE_TYPE = MYSQL_RESULT($result, $i, "PRIVILEGE_TYPE");
$thisIS_GRANTABLE = MYSQL_RESULT($result, $i, "IS_GRANTABLE");
$thisGRANTEE = highlightSearchTerms($thisGRANTEE, $thisKeyword, $highlightColor);
$thisTABLE_CATALOG = highlightSearchTerms($thisTABLE_CATALOG, $thisKeyword, $highlightColor);
$thisTABLE_SCHEMA = highlightSearchTerms($thisTABLE_SCHEMA, $thisKeyword, $highlightColor);
$thisTABLE_NAME = highlightSearchTerms($thisTABLE_NAME, $thisKeyword, $highlightColor);
$thisCOLUMN_NAME = highlightSearchTerms($thisCOLUMN_NAME, $thisKeyword, $highlightColor);
$thisPRIVILEGE_TYPE = highlightSearchTerms($thisPRIVILEGE_TYPE, $thisKeyword, $highlightColor);
$thisIS_GRANTABLE = highlightSearchTerms($thisIS_GRANTABLE, $thisKeyword, $highlightColor);
?>
<TR BGCOLOR="<?php
echo $bgColor;
?>
">
<TD><?php
echo $thisGRANTEE;
?>
</TD>
<TD><?php
echo $thisTABLE_CATALOG;
?>
</TD>
<TD><?php
echo $thisTABLE_SCHEMA;
示例3: while
while ($i < $numberOfRows) {
if ($i % 2 == 0) {
$bgColor = "#FFFFFF";
} else {
$bgColor = "#C0C0C0";
}
$thisID = MYSQL_RESULT($result, $i, "ID");
$thisALIAS_MODE = MYSQL_RESULT($result, $i, "ALIAS_MODE");
$thisPATTERN = MYSQL_RESULT($result, $i, "PATTERN");
$thisREPLACEMENT = MYSQL_RESULT($result, $i, "REPLACEMENT");
$thisSITE_ROOT = MYSQL_RESULT($result, $i, "SITE_ROOT");
$thisID = highlightSearchTerms($thisID, $thisKeyword, $highlightColor);
$thisALIAS_MODE = highlightSearchTerms($thisALIAS_MODE, $thisKeyword, $highlightColor);
$thisPATTERN = highlightSearchTerms($thisPATTERN, $thisKeyword, $highlightColor);
$thisREPLACEMENT = highlightSearchTerms($thisREPLACEMENT, $thisKeyword, $highlightColor);
$thisSITE_ROOT = highlightSearchTerms($thisSITE_ROOT, $thisKeyword, $highlightColor);
?>
<TR BGCOLOR="<?php
echo $bgColor;
?>
">
<TD><?php
echo $thisID;
?>
</TD>
<TD><?php
echo $thisALIAS_MODE;
?>
</TD>
<TD><?php
echo $thisPATTERN;
示例4: while
while ($i < $numberOfRows) {
if ($i % 2 == 0) {
$bgColor = "#FFFFFF";
} else {
$bgColor = "#C0C0C0";
}
$thisPROPERTY_ID = MYSQL_RESULT($result, $i, "PROPERTY_ID");
$thisPROPERTYDEF_ID = MYSQL_RESULT($result, $i, "PROPERTYDEF_ID");
$thisPROPERTY_MAPPING_ID = MYSQL_RESULT($result, $i, "PROPERTY_MAPPING_ID");
$thisPROPERTY_MAPPING_TYPE = MYSQL_RESULT($result, $i, "PROPERTY_MAPPING_TYPE");
$thisPROPERTY_VALUE = MYSQL_RESULT($result, $i, "PROPERTY_VALUE");
$thisPROPERTY_ID = highlightSearchTerms($thisPROPERTY_ID, $thisKeyword, $highlightColor);
$thisPROPERTYDEF_ID = highlightSearchTerms($thisPROPERTYDEF_ID, $thisKeyword, $highlightColor);
$thisPROPERTY_MAPPING_ID = highlightSearchTerms($thisPROPERTY_MAPPING_ID, $thisKeyword, $highlightColor);
$thisPROPERTY_MAPPING_TYPE = highlightSearchTerms($thisPROPERTY_MAPPING_TYPE, $thisKeyword, $highlightColor);
$thisPROPERTY_VALUE = highlightSearchTerms($thisPROPERTY_VALUE, $thisKeyword, $highlightColor);
?>
<TR BGCOLOR="<?php
echo $bgColor;
?>
">
<TD><?php
echo $thisPROPERTY_ID;
?>
</TD>
<TD><?php
echo $thisPROPERTYDEF_ID;
?>
</TD>
<TD><?php
echo $thisPROPERTY_MAPPING_ID;
示例5: MYSQL_RESULT
$thisCHECK_OPTION = MYSQL_RESULT($result, $i, "CHECK_OPTION");
$thisIS_UPDATABLE = MYSQL_RESULT($result, $i, "IS_UPDATABLE");
$thisDEFINER = MYSQL_RESULT($result, $i, "DEFINER");
$thisSECURITY_TYPE = MYSQL_RESULT($result, $i, "SECURITY_TYPE");
$thisCHARACTER_SET_CLIENT = MYSQL_RESULT($result, $i, "CHARACTER_SET_CLIENT");
$thisCOLLATION_CONNECTION = MYSQL_RESULT($result, $i, "COLLATION_CONNECTION");
$thisTABLE_CATALOG = highlightSearchTerms($thisTABLE_CATALOG, $thisKeyword, $highlightColor);
$thisTABLE_SCHEMA = highlightSearchTerms($thisTABLE_SCHEMA, $thisKeyword, $highlightColor);
$thisTABLE_NAME = highlightSearchTerms($thisTABLE_NAME, $thisKeyword, $highlightColor);
$thisVIEW_DEFINITION = highlightSearchTerms($thisVIEW_DEFINITION, $thisKeyword, $highlightColor);
$thisCHECK_OPTION = highlightSearchTerms($thisCHECK_OPTION, $thisKeyword, $highlightColor);
$thisIS_UPDATABLE = highlightSearchTerms($thisIS_UPDATABLE, $thisKeyword, $highlightColor);
$thisDEFINER = highlightSearchTerms($thisDEFINER, $thisKeyword, $highlightColor);
$thisSECURITY_TYPE = highlightSearchTerms($thisSECURITY_TYPE, $thisKeyword, $highlightColor);
$thisCHARACTER_SET_CLIENT = highlightSearchTerms($thisCHARACTER_SET_CLIENT, $thisKeyword, $highlightColor);
$thisCOLLATION_CONNECTION = highlightSearchTerms($thisCOLLATION_CONNECTION, $thisKeyword, $highlightColor);
?>
<TR BGCOLOR="<?php
echo $bgColor;
?>
">
<TD><?php
echo $thisTABLE_CATALOG;
?>
</TD>
<TD><?php
echo $thisTABLE_SCHEMA;
?>
</TD>
<TD><?php
echo $thisTABLE_NAME;
示例6: while
while ($i < $numberOfRows) {
if ($i % 2 == 0) {
$bgColor = "#FFFFFF";
} else {
$bgColor = "#C0C0C0";
}
$thisRELATION_SOURCE_ID = MYSQL_RESULT($result, $i, "RELATION_SOURCE_ID");
$thisRELATION_SOURCE_PATH = MYSQL_RESULT($result, $i, "RELATION_SOURCE_PATH");
$thisRELATION_TARGET_ID = MYSQL_RESULT($result, $i, "RELATION_TARGET_ID");
$thisRELATION_TARGET_PATH = MYSQL_RESULT($result, $i, "RELATION_TARGET_PATH");
$thisRELATION_TYPE = MYSQL_RESULT($result, $i, "RELATION_TYPE");
$thisRELATION_SOURCE_ID = highlightSearchTerms($thisRELATION_SOURCE_ID, $thisKeyword, $highlightColor);
$thisRELATION_SOURCE_PATH = highlightSearchTerms($thisRELATION_SOURCE_PATH, $thisKeyword, $highlightColor);
$thisRELATION_TARGET_ID = highlightSearchTerms($thisRELATION_TARGET_ID, $thisKeyword, $highlightColor);
$thisRELATION_TARGET_PATH = highlightSearchTerms($thisRELATION_TARGET_PATH, $thisKeyword, $highlightColor);
$thisRELATION_TYPE = highlightSearchTerms($thisRELATION_TYPE, $thisKeyword, $highlightColor);
?>
<TR BGCOLOR="<?php
echo $bgColor;
?>
">
<TD><?php
echo $thisRELATION_SOURCE_ID;
?>
</TD>
<TD><?php
echo $thisRELATION_SOURCE_PATH;
?>
</TD>
<TD><?php
echo $thisRELATION_TARGET_ID;
示例7: while
<B>VARIABLE_VALUE</B>
</a>
</TD>
</TR>
<?php
$highlightColor = "#FFFF99";
while ($i < $numberOfRows) {
if ($i % 2 == 0) {
$bgColor = "#FFFFFF";
} else {
$bgColor = "#C0C0C0";
}
$thisVARIABLE_NAME = MYSQL_RESULT($result, $i, "VARIABLE_NAME");
$thisVARIABLE_VALUE = MYSQL_RESULT($result, $i, "VARIABLE_VALUE");
$thisVARIABLE_NAME = highlightSearchTerms($thisVARIABLE_NAME, $thisKeyword, $highlightColor);
$thisVARIABLE_VALUE = highlightSearchTerms($thisVARIABLE_VALUE, $thisKeyword, $highlightColor);
?>
<TR BGCOLOR="<?php
echo $bgColor;
?>
">
<TD><?php
echo $thisVARIABLE_NAME;
?>
</TD>
<TD><?php
echo $thisVARIABLE_VALUE;
?>
</TD>
<TD><a href="editSESSION_VARIABLES.php?VARIABLE_NAMEField=<?php
echo $thisVARIABLE_NAME;
示例8: while
<?php
$highlightColor = "#FFFF99";
while ($i < $numberOfRows) {
if ($i % 2 == 0) {
$bgColor = "#FFFFFF";
} else {
$bgColor = "#C0C0C0";
}
$thisPath = MYSQL_RESULT($result, $i, "path");
$thisSite_root = MYSQL_RESULT($result, $i, "site_root");
$thisAlias_mode = MYSQL_RESULT($result, $i, "alias_mode");
$thisStructure_id = MYSQL_RESULT($result, $i, "structure_id");
$thisPath = highlightSearchTerms($thisPath, $thisKeyword, $highlightColor);
$thisSite_root = highlightSearchTerms($thisSite_root, $thisKeyword, $highlightColor);
$thisAlias_mode = highlightSearchTerms($thisAlias_mode, $thisKeyword, $highlightColor);
$thisStructure_id = highlightSearchTerms($thisStructure_id, $thisKeyword, $highlightColor);
?>
<TR BGCOLOR="<?php
echo $bgColor;
?>
">
<TD><?php
echo $thisPath;
?>
</TD>
<TD><?php
echo $thisSite_root;
?>
</TD>
<TD><?php
echo $thisAlias_mode;
示例9: highlightSearchTerms
$thisNUMBER_PAGES_WRITTEN = highlightSearchTerms($thisNUMBER_PAGES_WRITTEN, $thisKeyword, $highlightColor);
$thisPAGES_READ_RATE = highlightSearchTerms($thisPAGES_READ_RATE, $thisKeyword, $highlightColor);
$thisPAGES_CREATE_RATE = highlightSearchTerms($thisPAGES_CREATE_RATE, $thisKeyword, $highlightColor);
$thisPAGES_WRITTEN_RATE = highlightSearchTerms($thisPAGES_WRITTEN_RATE, $thisKeyword, $highlightColor);
$thisNUMBER_PAGES_GET = highlightSearchTerms($thisNUMBER_PAGES_GET, $thisKeyword, $highlightColor);
$thisHIT_RATE = highlightSearchTerms($thisHIT_RATE, $thisKeyword, $highlightColor);
$thisYOUNG_MAKE_PER_THOUSAND_GETS = highlightSearchTerms($thisYOUNG_MAKE_PER_THOUSAND_GETS, $thisKeyword, $highlightColor);
$thisNOT_YOUNG_MAKE_PER_THOUSAND_GETS = highlightSearchTerms($thisNOT_YOUNG_MAKE_PER_THOUSAND_GETS, $thisKeyword, $highlightColor);
$thisNUMBER_PAGES_READ_AHEAD = highlightSearchTerms($thisNUMBER_PAGES_READ_AHEAD, $thisKeyword, $highlightColor);
$thisNUMBER_READ_AHEAD_EVICTED = highlightSearchTerms($thisNUMBER_READ_AHEAD_EVICTED, $thisKeyword, $highlightColor);
$thisREAD_AHEAD_RATE = highlightSearchTerms($thisREAD_AHEAD_RATE, $thisKeyword, $highlightColor);
$thisREAD_AHEAD_EVICTED_RATE = highlightSearchTerms($thisREAD_AHEAD_EVICTED_RATE, $thisKeyword, $highlightColor);
$thisLRU_IO_TOTAL = highlightSearchTerms($thisLRU_IO_TOTAL, $thisKeyword, $highlightColor);
$thisLRU_IO_CURRENT = highlightSearchTerms($thisLRU_IO_CURRENT, $thisKeyword, $highlightColor);
$thisUNCOMPRESS_TOTAL = highlightSearchTerms($thisUNCOMPRESS_TOTAL, $thisKeyword, $highlightColor);
$thisUNCOMPRESS_CURRENT = highlightSearchTerms($thisUNCOMPRESS_CURRENT, $thisKeyword, $highlightColor);
?>
<TR BGCOLOR="<?php
echo $bgColor;
?>
">
<TD><?php
echo $thisPOOL_ID;
?>
</TD>
<TD><?php
echo $thisPOOL_SIZE;
?>
</TD>
<TD><?php
echo $thisFREE_BUFFERS;
示例10: MYSQL_RESULT
$bgColor = "#FFFFFF";
} else {
$bgColor = "#C0C0C0";
}
$thisPage_size = MYSQL_RESULT($result, $i, "page_size");
$thisCompress_ops = MYSQL_RESULT($result, $i, "compress_ops");
$thisCompress_ops_ok = MYSQL_RESULT($result, $i, "compress_ops_ok");
$thisCompress_time = MYSQL_RESULT($result, $i, "compress_time");
$thisUncompress_ops = MYSQL_RESULT($result, $i, "uncompress_ops");
$thisUncompress_time = MYSQL_RESULT($result, $i, "uncompress_time");
$thisPage_size = highlightSearchTerms($thisPage_size, $thisKeyword, $highlightColor);
$thisCompress_ops = highlightSearchTerms($thisCompress_ops, $thisKeyword, $highlightColor);
$thisCompress_ops_ok = highlightSearchTerms($thisCompress_ops_ok, $thisKeyword, $highlightColor);
$thisCompress_time = highlightSearchTerms($thisCompress_time, $thisKeyword, $highlightColor);
$thisUncompress_ops = highlightSearchTerms($thisUncompress_ops, $thisKeyword, $highlightColor);
$thisUncompress_time = highlightSearchTerms($thisUncompress_time, $thisKeyword, $highlightColor);
?>
<TR BGCOLOR="<?php
echo $bgColor;
?>
">
<TD><?php
echo $thisPage_size;
?>
</TD>
<TD><?php
echo $thisCompress_ops;
?>
</TD>
<TD><?php
echo $thisCompress_ops_ok;
示例11: MYSQL_RESULT
$thisUSER_LASTMODIFIED = MYSQL_RESULT($result, $i, "USER_LASTMODIFIED");
$thisPROJECT_LASTMODIFIED = MYSQL_RESULT($result, $i, "PROJECT_LASTMODIFIED");
$thisRESOURCE_VERSION = MYSQL_RESULT($result, $i, "RESOURCE_VERSION");
$thisRESOURCE_ID = highlightSearchTerms($thisRESOURCE_ID, $thisKeyword, $highlightColor);
$thisRESOURCE_TYPE = highlightSearchTerms($thisRESOURCE_TYPE, $thisKeyword, $highlightColor);
$thisRESOURCE_FLAGS = highlightSearchTerms($thisRESOURCE_FLAGS, $thisKeyword, $highlightColor);
$thisRESOURCE_STATE = highlightSearchTerms($thisRESOURCE_STATE, $thisKeyword, $highlightColor);
$thisRESOURCE_SIZE = highlightSearchTerms($thisRESOURCE_SIZE, $thisKeyword, $highlightColor);
$thisDATE_CONTENT = highlightSearchTerms($thisDATE_CONTENT, $thisKeyword, $highlightColor);
$thisSIBLING_COUNT = highlightSearchTerms($thisSIBLING_COUNT, $thisKeyword, $highlightColor);
$thisDATE_CREATED = highlightSearchTerms($thisDATE_CREATED, $thisKeyword, $highlightColor);
$thisDATE_LASTMODIFIED = highlightSearchTerms($thisDATE_LASTMODIFIED, $thisKeyword, $highlightColor);
$thisUSER_CREATED = highlightSearchTerms($thisUSER_CREATED, $thisKeyword, $highlightColor);
$thisUSER_LASTMODIFIED = highlightSearchTerms($thisUSER_LASTMODIFIED, $thisKeyword, $highlightColor);
$thisPROJECT_LASTMODIFIED = highlightSearchTerms($thisPROJECT_LASTMODIFIED, $thisKeyword, $highlightColor);
$thisRESOURCE_VERSION = highlightSearchTerms($thisRESOURCE_VERSION, $thisKeyword, $highlightColor);
?>
<TR BGCOLOR="<?php
echo $bgColor;
?>
">
<TD><?php
echo $thisRESOURCE_ID;
?>
</TD>
<TD><?php
echo $thisRESOURCE_TYPE;
?>
</TD>
<TD><?php
echo $thisRESOURCE_FLAGS;
示例12: highlightSearchTerms
$thisRECOVER_TIME = highlightSearchTerms($thisRECOVER_TIME, $thisKeyword, $highlightColor);
$thisTRANSACTION_COUNTER = highlightSearchTerms($thisTRANSACTION_COUNTER, $thisKeyword, $highlightColor);
$thisVERSION = highlightSearchTerms($thisVERSION, $thisKeyword, $highlightColor);
$thisROW_FORMAT = highlightSearchTerms($thisROW_FORMAT, $thisKeyword, $highlightColor);
$thisTABLE_ROWS = highlightSearchTerms($thisTABLE_ROWS, $thisKeyword, $highlightColor);
$thisAVG_ROW_LENGTH = highlightSearchTerms($thisAVG_ROW_LENGTH, $thisKeyword, $highlightColor);
$thisDATA_LENGTH = highlightSearchTerms($thisDATA_LENGTH, $thisKeyword, $highlightColor);
$thisMAX_DATA_LENGTH = highlightSearchTerms($thisMAX_DATA_LENGTH, $thisKeyword, $highlightColor);
$thisINDEX_LENGTH = highlightSearchTerms($thisINDEX_LENGTH, $thisKeyword, $highlightColor);
$thisDATA_FREE = highlightSearchTerms($thisDATA_FREE, $thisKeyword, $highlightColor);
$thisCREATE_TIME = highlightSearchTerms($thisCREATE_TIME, $thisKeyword, $highlightColor);
$thisUPDATE_TIME = highlightSearchTerms($thisUPDATE_TIME, $thisKeyword, $highlightColor);
$thisCHECK_TIME = highlightSearchTerms($thisCHECK_TIME, $thisKeyword, $highlightColor);
$thisCHECKSUM = highlightSearchTerms($thisCHECKSUM, $thisKeyword, $highlightColor);
$thisSTATUS = highlightSearchTerms($thisSTATUS, $thisKeyword, $highlightColor);
$thisEXTRA = highlightSearchTerms($thisEXTRA, $thisKeyword, $highlightColor);
?>
<TR BGCOLOR="<?php
echo $bgColor;
?>
">
<TD><?php
echo $thisFILE_ID;
?>
</TD>
<TD><?php
echo $thisFILE_NAME;
?>
</TD>
<TD><?php
echo $thisFILE_TYPE;
示例13: MYSQL_RESULT
$bgColor = "#FFFFFF";
} else {
$bgColor = "#C0C0C0";
}
$thisCOLLATION_NAME = MYSQL_RESULT($result, $i, "COLLATION_NAME");
$thisCHARACTER_SET_NAME = MYSQL_RESULT($result, $i, "CHARACTER_SET_NAME");
$thisID = MYSQL_RESULT($result, $i, "ID");
$thisIS_DEFAULT = MYSQL_RESULT($result, $i, "IS_DEFAULT");
$thisIS_COMPILED = MYSQL_RESULT($result, $i, "IS_COMPILED");
$thisSORTLEN = MYSQL_RESULT($result, $i, "SORTLEN");
$thisCOLLATION_NAME = highlightSearchTerms($thisCOLLATION_NAME, $thisKeyword, $highlightColor);
$thisCHARACTER_SET_NAME = highlightSearchTerms($thisCHARACTER_SET_NAME, $thisKeyword, $highlightColor);
$thisID = highlightSearchTerms($thisID, $thisKeyword, $highlightColor);
$thisIS_DEFAULT = highlightSearchTerms($thisIS_DEFAULT, $thisKeyword, $highlightColor);
$thisIS_COMPILED = highlightSearchTerms($thisIS_COMPILED, $thisKeyword, $highlightColor);
$thisSORTLEN = highlightSearchTerms($thisSORTLEN, $thisKeyword, $highlightColor);
?>
<TR BGCOLOR="<?php
echo $bgColor;
?>
">
<TD><?php
echo $thisCOLLATION_NAME;
?>
</TD>
<TD><?php
echo $thisCHARACTER_SET_NAME;
?>
</TD>
<TD><?php
echo $thisID;
示例14: MYSQL_RESULT
$bgColor = "#FFFFFF";
} else {
$bgColor = "#C0C0C0";
}
$thisPage_size = MYSQL_RESULT($result, $i, "page_size");
$thisBuffer_pool_instance = MYSQL_RESULT($result, $i, "buffer_pool_instance");
$thisPages_used = MYSQL_RESULT($result, $i, "pages_used");
$thisPages_free = MYSQL_RESULT($result, $i, "pages_free");
$thisRelocation_ops = MYSQL_RESULT($result, $i, "relocation_ops");
$thisRelocation_time = MYSQL_RESULT($result, $i, "relocation_time");
$thisPage_size = highlightSearchTerms($thisPage_size, $thisKeyword, $highlightColor);
$thisBuffer_pool_instance = highlightSearchTerms($thisBuffer_pool_instance, $thisKeyword, $highlightColor);
$thisPages_used = highlightSearchTerms($thisPages_used, $thisKeyword, $highlightColor);
$thisPages_free = highlightSearchTerms($thisPages_free, $thisKeyword, $highlightColor);
$thisRelocation_ops = highlightSearchTerms($thisRelocation_ops, $thisKeyword, $highlightColor);
$thisRelocation_time = highlightSearchTerms($thisRelocation_time, $thisKeyword, $highlightColor);
?>
<TR BGCOLOR="<?php
echo $bgColor;
?>
">
<TD><?php
echo $thisPage_size;
?>
</TD>
<TD><?php
echo $thisBuffer_pool_instance;
?>
</TD>
<TD><?php
echo $thisPages_used;
示例15: highlightSearchTerms
$thisDC_Hostname = highlightSearchTerms($thisDC_Hostname, $thisKeyword, $highlightColor);
$thisMedu_Hostname = highlightSearchTerms($thisMedu_Hostname, $thisKeyword, $highlightColor);
$thisDomain_Name = highlightSearchTerms($thisDomain_Name, $thisKeyword, $highlightColor);
$thisCNAME = highlightSearchTerms($thisCNAME, $thisKeyword, $highlightColor);
$thisPublic_IP = highlightSearchTerms($thisPublic_IP, $thisKeyword, $highlightColor);
$thisNetwork = highlightSearchTerms($thisNetwork, $thisKeyword, $highlightColor);
$thisDMZ_IP = highlightSearchTerms($thisDMZ_IP, $thisKeyword, $highlightColor);
$thisMgmt_IP = highlightSearchTerms($thisMgmt_IP, $thisKeyword, $highlightColor);
$thisPublic_MAC = highlightSearchTerms($thisPublic_MAC, $thisKeyword, $highlightColor);
$thisDMZ_MAC = highlightSearchTerms($thisDMZ_MAC, $thisKeyword, $highlightColor);
$thisMGMT_MAC = highlightSearchTerms($thisMGMT_MAC, $thisKeyword, $highlightColor);
$thisDescription = highlightSearchTerms($thisDescription, $thisKeyword, $highlightColor);
$thisServiceTag = highlightSearchTerms($thisServiceTag, $thisKeyword, $highlightColor);
$thisRow = highlightSearchTerms($thisRow, $thisKeyword, $highlightColor);
$thisRack = highlightSearchTerms($thisRack, $thisKeyword, $highlightColor);
$thisSlot = highlightSearchTerms($thisSlot, $thisKeyword, $highlightColor);
?>
<TR BGCOLOR="<?php
echo $bgColor;
?>
">
<TD><?php
echo $thisDatacenter;
?>
</TD>
<TD><?php
echo $thisDC_Hostname;
?>
</TD>
<TD><?php
echo $thisMedu_Hostname;