Home  >  Article  >  Backend Development  >  关于 跨域传值的有关问题

关于 跨域传值的有关问题

WBOY
WBOYOriginal
2016-06-13 10:16:30836browse

关于 跨域传值的问题
现在有A页面 和 B页面 (在不同服务器),  
A页面需要获取B页面穿过来的值并且插入到A页面的数据库: file_get_contents (B.html)
这是 B页面返回的是 一个一维数组, 但是根据file_get_contents 的特点还是读取为字符串返回到A页面了,
所以现在的问题就是B页面获取的那段貌似数组的字符串怎么转换成真正的数组?


------解决方案--------------------
B.html的数组是什么格式的?
如果可以设置的话,序列化B.html的那个数组为字符串。 参考 serialize()函数
------解决方案--------------------

PHP code
$s = 第一个    [2] => 第二个    [3] => 第三个)TXT;preg_match_all('/\[(\w+)\] => (.+)$/m', $s, $r);$ar = array_combine($r[1], $r[2]);<div class="clear">
                 
              
              
        
            </div>
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn