我正在尝试创建自己的 url 预览。就像脸书节目一样。不想使用现成的脚本。
我来啦:
echo "<a href="; echo $url; echo"/>"; echo $title_display; echo "</a>"; //show url and title description
echo "</br>";
echo "<img src='"; echo $logo; echo "'height='84' width='66' >"; // shows image on the page
$content = plaintext($data);
$Preview = trim_display(100,$content); //to Show first 100 char of the web page as preview
echo $Preview;
echo " <a href="; echo $url; echo " target=_blank />"; echo "See More"; echo "</a>"; // See more link to go on that page
但是这里的格式不合适。
我怎样才能在一个包含的框中显示全部内容。
第一个标题 desc 和它的 url 即
echo "<a href="; echo $url; echo"/>"; echo $title_display; echo "</a>"; //show url and title description
在它下方 框左侧的图像(可以为此使用 div)
- 预览,即图像右侧的小 100 字符描述。
与输入 URL 时 facebook 显示的图像预览完全相同。