选择语言 :

 Core_Str::append

追加数据

null Core_Str::append( string $value )

参数列表

参数 类型 描述 默认值
$value string $value
File: ./core/classes/str.class.php
public function append($value)
{
    $this->data .= $value;
    return $this;
}