我需要帮助从我的ip相机用php获取img或html代码,我看到其他帖子与cgi网络摄像头。但是我的ip camera使用这个formart进行登录:
http://user:password@IP:port/Streaming/channels/1/picture
我使用此代码并使用其他网址但不使用我的ip cam
<?php
$html = file_get_contents('http://user:password@IP:port/Streaming/channels/1/picture');
echo $html;
?>
它不会出错,但不会返回任何内容。
问候并谢谢你