码迷,mamicode.com
首页 > 其他好文 > 详细

字符串存取

时间:2017-12-27 22:32:22      阅读:239      评论:0      收藏:0      [点我收藏+]

标签:serialize   字符   nts   log   函数   json   class   blog   content   

字符串存取

1.string中的字符可以通过一个从0开始的下标 用类似array结构中的方括号包含对应的数字访问和修改 $str[42]
2.也可以用花括号访问 $str{42}
3.用超出字符串长度的下标写入将会拉长该字符串并以空格填充
4.非整数类型下标会被转换为整数 非法下标类型会产生一个E_NOTICE级别错误

字符串 “串行化”

1.大部分PHP值可以转变为string永久保存
2.方法1:函数serialize()可以实现 (尤其对于一个对象unserialize)
方法2:函数json_encode()可以实现 (在js里面也可以直接使用)
方法3:函数var_export($items,true)
方法3案例

<?php
$arr = array(1,2,3,4,5);
$str = var_export($arr,true);
$str = ‘<?php return ‘.$str.‘;‘;
file_put_contents(‘xyz‘,$str);
<?php
$str = include ‘xyz‘;
var_dump($str);

字符串存取

标签:serialize   字符   nts   log   函数   json   class   blog   content   

原文地址:https://www.cnblogs.com/weizaiyes/p/8127727.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!