gpt4 book ai didi

php - 如何在php中读取任何附加文件的内容

转载 作者:行者123 更新时间:2023-11-29 05:28:28 28 4
gpt4 key购买 nike

如果数据是这样,我如何从文件中读取数据。

<area shape="poly" alt="1101" coords="1735,606, 1736,606, 1737,606, 1738,606, 1739,606, 1740,606, 1741,607,

我知道如何打开文件以及如何简单地读取和存储数据,但是如何从“alt”和“coords”中提取数据请帮助我。

<?php
$handle = @fopen("sunset_map.map", "r");
$conn = mysql_connect("localhost","root","");
mysql_select_db("read_data",$conn);
while (!feof($handle)) // Loop til end of file.
{

$buffer = fgets($handle, 4096);
// Read a line.
// $a = $_get['alt'] ;
// $b = $_get['coords'];
// parse_str("alt = str& coords = ",$myarray);
// print_r($myarray);
list($a,$b)=explode("|",$buffer);
// list($myarray)=explode("|",$buffer);
//Separate string by the means of |
// echo $a."-".$b."<br>";
$sql = "INSERT INTO content_data (id,coords) VALUES('".$a."','".$b."')";
mysql_query($sql,$conn) or die(mysql_error());

}
?>

最佳答案

您可以使用 DOMDocument解析 HTML。使用 DOMDocument::getElementsByTagName 获取区域元素.然后,当您遍历这些元素时,您可以使用 DOMElement::getAttribute获取“alt”和“coords”属性。

关于php - 如何在php中读取任何附加文件的内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17367523/

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