选择语言 :

 Core_Str::factory

返回实例化对象

Str Core_Str::factory( [ array $data = empty ] )

参数列表

参数 类型 描述 默认值
$data array $data empty
返回值
  • Str
File: ./core/classes/str.class.php
public static function factory($data='')
{
    return new Str($data);
}