本文整理汇总了PHP中general::extraImplode方法的典型用法代码示例。如果您正苦于以下问题:PHP general::extraImplode方法的具体用法?PHP general::extraImplode怎么用?PHP general::extraImplode使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类general
的用法示例。
在下文中一共展示了general::extraImplode方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: removeOpenTags
public function removeOpenTags($tags)
{
try {
$tags = explode(' ', $tags);
// string to array
if (!isset($this->openTags)) {
self::getOpenTags();
}
//<-- end if -->
$remainingTags = array();
if ($this->openTags) {
foreach ($this->openTags as $file) {
$remainingTags[] = array_diff($file, $tags);
}
//<-- end foreach -->
}
//<-- end if -->
$count = count($remainingTags);
if ($count > 0) {
foreach ($this->files as $key => $value) {
$tags = implode(' ', $remainingTags[$key]);
$this->fileList = '\'' . $value . '\'';
self::setOpenTags($tags);
}
//<-- end foreach -->
$this->fileList = general::extraImplode($this->files);
}
//<-- end if -->
$this->openTags = $remainingTags;
$tags = array();
if ($remainingTags) {
foreach ($remainingTags as $tag) {
$openTagList[] = implode(', ', $tag);
// array to string
}
//<-- end foreach -->
return $openTagList;
}
//<-- end if -->
} catch (Exception $e) {
throw new Exception($e->getMessage() . ' from ' . $this->className . '->' . __FUNCTION__ . '() line ' . __LINE__);
}
//<-- end try -->
}