'주가'에 해당하는 글 2건





youtu.be/VLgVte9A87Q?t=1226

9월 15일에 망하고

탈프 법안이 의회 통과를 못하자 폭락이 나왔다.

 

즉 낙하산은 있었다.

 

 


WRITTEN BY
SIDNFT
게임개발자에서 WEBGL 웹개발자로 전환중

,




(주의) 여러개 해보니 안되는 종목도 있어서 못쓰겠다..

node.js 로 크롤링 해서 네이버 금융 페이지 읽는게 편하겠다.
<?php

// 뒤에숫자가 종목코드
$url = 'http://asp1.krx.co.kr/servlet/krx.asp.XMLSise?code=035420';

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_TIMEOUT, 10);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
$output = curl_exec($ch);
curl_close($ch);

$output = trim($output);
$object = simplexml_load_string($output);
echo json_encode($object);

WRITTEN BY
SIDNFT
게임개발자에서 WEBGL 웹개발자로 전환중

,