getCharset() 方法 public string getCharset() {return} string 字符集名称 源码: sdk/php/util/XSDataSource.class.php#L86 (显示) public function getCharset(){ return false;} 取得数据源的准确字符集 如不能确定字符集, 请直接返回 false
...TF8') { self::$_charset = 'UTF-8'; } return $this;} 设置字符集 默认字符集是 UTF-8, 这是指 getResult 系列函数的 $text 参数的字符集
...TF8') { $this->_charset = 'UTF-8'; } return $this;} 设置字符集 默认字符集是 UTF-8, 如果您提交的搜索语句和预期得到的搜索结果为其它字符集, 请先设置
...oid setDefaultCharset(string $charset) $charset string 修改后的字符集 源码: sdk/php/lib/XS.class.php#L397 (显示) public function setDefaultCharset($charset){ $this->_config['project.default_charset'] = strtoupper($charset);} 改变项目的默认字符集
getCharset() 方法 public string getCharset() {return} string 当前设定的字符集(已大写), 若未曾设置则返回 null 源码: sdk/php/lib/XSDocument.class.php#L123 (显示) public function getCharset(){ return $this->_charset;} 获取文档字符集
...ublic void setCharset(string $charset) $charset string 设置文档字符集 源码: sdk/php/lib/XSDocument.class.php#L132 (显示) public function setCharset($charset){ $this->_charset = strtoupper($charset); if ($this->_charset == 'UTF8') { $this->_charset = 'UTF-8'; }...
...法 public string getDefaultCharset() {return} string 默认字符集(已大写) 源码: sdk/php/lib/XS.class.php#L387 (显示) public function getDefaultCharset(){ return isset($this->_config['project.default_charset']) ? strtoupper($this->_config['project.default_c...
...ring 和 array, 数组会自动递归转换 $to string 转换后的字符集 $from string 转换前的字符集 {return} mixed 转换后的数据 源码: sdk/php/lib/XS.class.php#L550 (显示) public static function convert($data, $to, $from){ // need not convert i...
...ata array 字段名和值组成的数据数组 $cs mixed 数据字符集, 默认 false 表示无法确定源字符集 {return} mixed 返回处理后的数据数组, 返回 false 表示本条数据不加入索引 源码: sdk/php/util/XSDataSource.class.php#L969 (显示) publi...
... public bool setUtf8() {return} bool MySQL 自 4.1.0 起支持字符集 源码: sdk/php/util/XSDataSource.class.php#L534 (显示) public function setUtf8(){ if (version_compare(mysql_get_server_info($this->link), '4.1.0', '>=')) { return @mysql_query("SET NAMES utf8", $th...