10/10/2018, 00:10
Cho mình hỏi cách đọc tin rss bằn g PHP
Cho mình hỏi là có cách nào đọc tin rss bằng PHP không ?
Thánks trước nhé. ^^
Thánks trước nhé. ^^
Bài liên quan
Warning: file_get_contents(http://www.php.net) [function.file-get-contents]: failed to open stream: no suitable wrapper could be found in /home/zoejoe/homepage/test/index.php on line 17
$ctx = stream_context_create(array(
'http' => array(
'timeout' => 1
)
)
);
echo file_get_contents("http://php.net/", 0, $ctx);
Đã ini_set lại.
<?php
/*
* html parser
*/
ini_set('allow_url_fopen', 'On');
$ctx = stream_context_create(array(
'http' => array(
'timeout' => 60
)
)
);
echo file_get_contents("http://php.net/", 0, $ctx);
?>
Warning: file_get_contents(http://php.net/) [function.file-get-contents]: failed to open stream: no suitable wrapper could be found in /home/zoejoe/homepage/test/index.php on line 14