gpt4 book ai didi

php从文件中解析ascii文本获取内容

转载 作者:行者123 更新时间:2023-12-04 06:04:50 26 4
gpt4 key购买 nike

大家早上好,我有一个新问题:
我正在尝试将一组来自 SIMBAD 数据库查询的数据(它是一个恒星对象数据库)保存到 mysql 中。
如果您在浏览器中输入此网址:http://simbad.u-strasbg.fr/simbad/sim-id?output.format=ASCII&Ident=hd%201&OutputMode=VOTable
你会得到一个用单独的行格式化的结果,但如果你使用

<?php
$cadaart = 'http://simbad.u-strasbg.fr/simbad/sim-id?output.format=ASCII&Ident=hd%201';
$handler = curl_init($cadaart);
$response = curl_exec ($handler);
curl_close($handler);
echo $response;
?>

或者一个简单的 file_get_content 并回显响应,你会得到一行包含所有信息的信息,这让我无法解析......关于如何解决这个问题的任何想法?

谢谢。

最佳答案

字符串已经有换行符,
您可以使用 file将该 URL 中的内容转换为数组(每一行都是一个数组元素)

A URL can be used as a filename with this function if the fopen wrappers have been enabled. See fopen() for more details on how to specify the filename. See the Supported Protocols and Wrappers for links to information about what abilities the various wrappers have, notes on their usage, and information on any predefined variables they may provide.

关于php从文件中解析ascii文本获取内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8491366/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com