是否可以在 php 网站上预览远程桌面?

Is it possible to preview remote desktop on php website?

是否可以在 php 网站上查看远程桌面连接?只是预览,不是互动 window。我知道如何使用 VNC 连接到远程桌面,但它会在单独的选项卡中打开它,您可以控制 window。

简短的回答是:否。

这通常是通过让服务器生成屏幕截图并将这些图像嵌入到 PHP 中以便在网站上显示来完成的。

如果您喜欢直播他们,您需要一些服务来生成提要,然后 PHP 可以显示它。这家伙这样做是为了投屏他的在线课程:

https://www.youtube.com/watch?v=dYrjI_u3ka8

基本上使用 Google 视频群聊将其广播到 YouTube 并使用以下方法将其嵌入您的页面:

https://github.com/kassius/youtube-live-embed

来自示例:

require_once('EmbedYoutubeLiveStreaming.php'); // Use this if the class file from repo is in the same directory
$channelId = 'REPLACE_ME'; // This is the your CHANNEL ID
$api_key = 'REPLACE_ME'; // This is your google project API KEY with youtube api enabled
$YouTubeLive = new EmbedYoutubeLiveStreaming($channelId, $api_key);

希望对您有所帮助!