本文整理汇总了PHP中_ltrim函数的典型用法代码示例。如果您正苦于以下问题:PHP _ltrim函数的具体用法?PHP _ltrim怎么用?PHP _ltrim使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了_ltrim函数的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: ltrim
/**
* Strips whitespace (or other UTF-8 characters) from the beginning of a string.
* @see http://php.net/ltrim
*
* @author Andreas Gohr <andi@splitbrain.org>
*
* @param string input string
* @param string string of characters to remove
* @return string
*/
public static function ltrim($str, $charlist = NULL)
{
if (!isset(self::$called[__FUNCTION__])) {
require SYSPATH . 'core/utf8/' . __FUNCTION__ . EXT;
// Function has been called
self::$called[__FUNCTION__] = TRUE;
}
return _ltrim($str, $charlist);
}
示例2: ltrim
public static function ltrim($str, $charlist = NULL)
{
if (!isset(UTF8::$called[__FUNCTION__])) {
require JsonApiApplication::find_file("utf8", __FUNCTION__);
// Function has been called
UTF8::$called[__FUNCTION__] = TRUE;
}
return _ltrim($str, $charlist);
}
示例3: ltrim
/**
* Strips whitespace (or other UTF-8 characters) from the beginning of a string.
* @see http://php.net/ltrim
*
* @author Andreas Gohr <andi@splitbrain.org>
*
* @param string input string
* @param string string of characters to remove
* @return string
*/
public static function ltrim($str, $charlist = NULL)
{
require_once dirname(__FILE__) . '/' . __FUNCTION__ . '.php';
return _ltrim($str, $charlist);
}
示例4: ltrim
/**
* Strips whitespace (or other UTF-8 characters) from the beginning of
* a string. This is a UTF8-aware version of [ltrim](http://php.net/ltrim).
*
* $str = UTF8::ltrim($str);
*
* @author Andreas Gohr <andi@splitbrain.org>
* @param string $str input string
* @param string $charlist string of characters to remove
* @return string
*/
public static function ltrim($str, $charlist = NULL)
{
if (!isset(UTF8::$called[__FUNCTION__])) {
require Kohana::find_file('utf8', __FUNCTION__);
// Function has been called
UTF8::$called[__FUNCTION__] = TRUE;
}
return _ltrim($str, $charlist);
}
示例5: ltrim
/**
* Strips whitespace (or other UTF-8 characters) from the beginning of
* a string
*
* This is a UTF8-aware version of [ltrim](http://php.net/ltrim).
*
* Example:
* ~~~
* $str = UTF8::ltrim($str);
* ~~~
*
* @author Andreas Gohr <andi@splitbrain.org>
*
* @param string $str Input string
* @param string $charlist String of characters to remove [Optional]
*
* @return string
*
* @uses Kohana::find_file
*/
public static function ltrim($str, $charlist = NULL)
{
UTF8::_load(__FUNCTION__);
return _ltrim($str, $charlist);
}
示例6: ltrim
/**
* Strips whitespace (or other UTF-8 characters) from the beginning of
* a string. This is a UTF8-aware version of [ltrim](http://php.net/ltrim).
*
* $str = UTF8::ltrim($str);
*
* @author Andreas Gohr <andi@splitbrain.org>
* @param string $str input string
* @param string $charlist string of characters to remove
* @return string
*/
public static function ltrim($str, $charlist = null)
{
if (!isset(UTF8::$called[__FUNCTION__])) {
require Phalcana::$di->get('fs')->findFile('utf8', __FUNCTION__);
// Function has been called
UTF8::$called[__FUNCTION__] = true;
}
return _ltrim($str, $charlist);
}