这应该是基于代码点火器的类,
表格标题应为
Price Percent_change公司名称公司代码量
请帮助任何人知道吗?
非常感谢!
答案 0 :(得分:0)
在codeigniter类中,您应该使用指定的网址调用 file_get_contents
函数:
$contents = file_get_contents('url here');
现在,您可以根据需要操作$contents
变量中指定网址的数据。
答案 1 :(得分:0)
您只需解析文件并将其插入数据库即可。快速查看链接显示它似乎全部由分号分隔。看看explode()
要获得结果,只需执行
即可$splitContents = explode($rawContents);
$counter=0
while($counter <= count($splitContents)) {
$Price=$splitContents[$counter++]
$Percent_change=$splitContents[$counter++]
$Company_Name=$splitContents[$counter++]
$Company_Code=$splitContents[$counter++]
$Volume=$splitContents[$counter++]
mysql_query("INSERT INTO ....");
}