首页
VIP观影
美女套图
留言板
好友导航
推荐
影视在线
IDC销售
常用工具
高清壁纸
娱乐直播
Search
1
关于【套图】贡献者说明
6,599 阅读
2
利用CSS改变图片显示风格的方法 filter
3,706 阅读
3
女神朴信惠(๑′ᴗ‵๑)I Lᵒᵛᵉᵧₒᵤ❤
3,035 阅读
4
WJSSK_myfriend 我的好友(导航插件) 相关说明
1,638 阅读
5
随机小姐姐跳舞视频(6362个),源码分享
1,327 阅读
随笔
技术源码
Typecho
php
Vue
微信
资源分享
Happy 分享
好看的电影
好看的电视剧
登录
/
注册
Search
标签搜索
php
IDC
智简魔方
财务系统
主题
vue
Easypanel
centos
typecho
mqtt
宝塔bt
typecho插件
函数
云服务器
Kangle
docker
JavaScript
mosquitto
mosquitto-cluster
mosquitto-auth-plug
登录
Or
注册
累计撰写
128
篇文章
累计收到
312
条评论
首页
栏目
随笔
技术源码
Typecho
php
Vue
微信
资源分享
Happy 分享
好看的电影
好看的电视剧
页面
VIP观影
美女套图
留言板
好友导航
推荐
影视在线
IDC销售
常用工具
高清壁纸
娱乐直播
搜索到
1
篇与
mb_internal_encoding
的结果
2022-07-01
PHP之mb_internal_encoding()函数使用说明
mb_internal_encoding()(PHP 4 >= 4.0.6, PHP 5, PHP 7) mb_internal_encoding — Set/Get internal character encoding 设置或获取内部字符集描述/Descriptionmixed mb_internal_encoding ([ string $encoding = mb_internal_encoding() ] )//Set/Get the internal character encoding参数编码/Parameters encodingencoding is the character encoding name used for the HTTP input character encoding conversion, HTTP output character encoding conversion, and the default character encoding for string functions defined by the mbstring module. You should notice that the internal encoding is totally different from the one for multibyte regex.字符编码用于HTTP输入,输出字符编码转换,默认的字符编码由mbstring模块字符串函数定义的。你应该注意到内部编码完全不同于多字节的正则表达式。返回值/Return ValuesIf encoding is set, then Returns TRUE on success or FALSE on failure. In this case, the character encoding for multibyte regex is NOT changed. If encoding is omitted, then the current character encoding name is returned.如果设置了编码,则成功返回TRUE或失败时返回FALSE。在这种情况下,对多字节字符编码不改变正则表达式。如果省略编码,则返回当前字符编码名称。示例/Examples<?php /* * Set internal character encoding to UTF-8 * 设置内部字符编码为UTF-8 */ mb_internal_encoding("UTF-8"); /* * Display current internal character encoding * 显示当前内部字符编码 */ echo mb_internal_encoding().PHP_EOL; // UTF-8 mb_internal_encoding("GBK"); echo mb_internal_encoding().PHP_EOL; //CP936 mb_internal_encoding("CP936"); echo mb_internal_encoding().PHP_EOL; //CP936 mb_internal_encoding("iso-8859-1"); echo mb_internal_encoding().PHP_EOL; //ISO-8859-1 ?>
2022年07月01日
22 阅读
0 评论
0 点赞