... public static string convertOut(string $buf) $buf string 要转换字符串 {return} string 转换后的字符串 源码: sdk/php/util/XSUtil.class.php#L82 (显示) public static function convertOut($buf){ if (self::$charset !== null) { return XS::convert($buf, self::...
... public static string convertIn(string $buf) $buf string 要转换字符串 {return} string 转换后的字符串 源码: sdk/php/util/XSUtil.class.php#L95 (显示) public static function convertIn($buf){ if (self::$charset !== null) { return XS::convert($buf, 'UTF-8'...
...法 名称描述定义于 convertIn() 把用户输入的字符串转换为 UTF-8 编码 XSUtil convertOut() 把 UTF-8 字符串转换为用户编码 XSUtil copyDir() 拷贝一个目录及其子目录文件 XSUtil fixWidth() 修正字符串至固定宽度 ...
...string $text, int $size, string $pad=' ') $text string 要修正的字符串 $size int 修正的目标宽度 $pad string 用于填充补足的字符 {return} string 源码: sdk/php/util/XSUtil.class.php#L50 (显示) public static function fixWidth($text, $size, ...
...与服务端交互的最基本单位, 命令对象可自动转换为通讯字符串, 命令结构参见 C 代码中的 struct xs_cmd 定义, 头部长度为 8字节. Public 属性 隐去继承来的属性 名称类型描述定义于 arg int 获取属性 arg 的值 XSCom...
...public string __toString() {return} string 用于服务端交互的字符串 源码: sdk/php/lib/XSServer.class.php#L83 (显示) public function __toString(){ if (strlen($this->buf1) > 0xff) { $this->buf1 = substr($this->buf1, 0, 0xff); } return pack('CCCCI', $this->cmd,...