本文整理匯總了PHP中FabrikString::rtrim方法的典型用法代碼示例。如果您正苦於以下問題:PHP FabrikString::rtrim方法的具體用法?PHP FabrikString::rtrim怎麽用?PHP FabrikString::rtrim使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類FabrikString
的用法示例。
在下文中一共展示了FabrikString::rtrim方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: setRowClass
/**
* Set row class
*
* @param array &$data row data to set class for
*
* @return null
*/
public function setRowClass(&$data)
{
$rowclass = $this->getParams()->get('use_as_row_class');
if ($rowclass == 1) {
$col = $this->getFullName(false, true, false);
$rawcol = $col . '_raw';
foreach ($data as $groupk => $group) {
for ($i = 0; $i < count($group); $i++) {
$c = false;
if (isset($data[$groupk][$i]->data->{$rawcol})) {
$c = $data[$groupk][$i]->data->{$rawcol};
} elseif (isset($data[$groupk][$i]->data->{$col})) {
$c = $data[$groupk][$i]->data->{$col};
}
if ($c !== false) {
$c = preg_replace('/[^A-Z|a-z|0-9]/', '-', $c);
$c = FabrikString::ltrim($c, '-');
$c = FabrikString::rtrim($c, '-');
// $$$ rob 24/02/2011 can't have numeric class names so prefix with element name
if (is_numeric($c)) {
$c = $this->getElement()->name . $c;
}
$data[$groupk][$i]->class .= ' ' . $c;
}
}
}
}
}