当前位置: 首页>>代码示例>>PHP>>正文


PHP jTpl::getEncoding方法代码示例

本文整理汇总了PHP中jTpl::getEncoding方法的典型用法代码示例。如果您正苦于以下问题:PHP jTpl::getEncoding方法的具体用法?PHP jTpl::getEncoding怎么用?PHP jTpl::getEncoding使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在jTpl的用法示例。


在下文中一共展示了jTpl::getEncoding方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: jtpl_modifier_common_truncate

/**
 * modifier plugin :  Truncate a string
 *
 * Truncate a string to a certain length if necessary, optionally splitting in
 * the middle of a word, and appending the $etc string.
 * <pre>{$mytext|truncate}
 * {$mytext|truncate:40}
 * {$mytext|truncate:45:'...'}
 * {$mytext|truncate:60:'...':true}
 * </pre>
 * @param string $string the string to truncate
 * @param integer $length the number of char to keep
 * @param string $etc the string to append to the truncated string
 * @param boolean $break_words false if the last word shouldn't be cut
 * @return string
 */
function jtpl_modifier_common_truncate($string, $length = 80, $etc = '...', $break_words = false)
{
    if (function_exists('mb_strlen')) {
        $f_strlen = 'mb_strlen';
    } else {
        $f_strlen = 'iconv_strlen';
    }
    if (function_exists('mb_substr')) {
        $f_substr = 'mb_substr';
    } else {
        $f_substr = 'iconv_substr';
    }
    if ($length == 0) {
        return '';
    }
    $charset = jTpl::getEncoding();
    if ($f_strlen($string, $charset) > $length) {
        $length -= $f_strlen($etc, $charset);
        if (!$break_words) {
            $string = preg_replace('/\\s+?(\\S+)?$/', '', $f_substr($string, 0, $length + 1, $charset));
        }
        return $f_substr($string, 0, $length, $charset) . $etc;
    } else {
        return $string;
    }
}
开发者ID:CREASIG,项目名称:lizmap-web-client,代码行数:42,代码来源:modifier.truncate.php

示例2: jtpl_modifier_common_regex_replace

/**
 * Plugin from smarty project and adapted for jtpl
 * @package    jelix
 * @subpackage jtpl_plugin
 * @copyright  2001-2003 ispi of Lincoln, Inc.
 * @link http://smarty.php.net/
 * @link http://jelix.org/
 * @licence    GNU Lesser General Public Licence see LICENCE file or http://www.gnu.org/licenses/lgpl.html
 */
function jtpl_modifier_common_regex_replace($string, $search, $replace)
{
    if (preg_match('!\\W(\\w+)$!s', $search, $match) && strpos($match[1], 'e') !== false) {
        $search = substr($search, 0, -iconv_strlen($match[1], jTpl::getEncoding())) . str_replace('e', '', $match[1]);
    }
    return preg_replace($search, $replace, $string);
}
开发者ID:havefnubb,项目名称:havefnubb,代码行数:16,代码来源:modifier.regex_replace.php

示例3: jtpl_modifier_common_count_characters

/**
 * Modifier plugin : count the number of characters in a text
 *
 * <pre>{$mytext|count_characters}
 * {$mytext|count_characters:true}</pre>
 * @param string $string
 * @param boolean $include_spaces include whitespace in the character count
 * @return integer
 */
function jtpl_modifier_common_count_characters($string, $include_spaces = false)
{
    if ($include_spaces) {
        return iconv_strlen($string, jTpl::getEncoding());
    }
    return preg_match_all("/[^\\s]/", $string, $match);
}
开发者ID:CREASIG,项目名称:lizmap-web-client,代码行数:16,代码来源:modifier.count_characters.php


注:本文中的jTpl::getEncoding方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。