如何获取要在PHP中显示的图像URL

时间:2019-09-11 21:59:29

标签: php html image

无法获取要在我的代码中显示的图片网址;这是我的网址:https://production.cdmycdn.com/webpack/renderer/d7285ffbbd0ca6d1d2179f7d22ea1f67.svg

///////////////////////////////////////////////// ///////////////////////////////////////////////////// ///////////////////////////////////////////////////// ///////////////////////////////////////////////////// //////////////////////////////////

<!DOCTYPE html>
<html>
<head>
<title>PHP Exercise 1: Links and Variables</title>
</head>
<body>
<h1>PHP Exercise 1: Links and Variables</h1>
<p>Use PHP echo and variables to output the
following link information:</p>
<hr>

<?php
$linkName ='<h1> Codecademy <h1>';

$linkURL = '<a href="https://www.codecademy.com">codecademy</a>';
$linkImage = 
'https://production.cdmycdn.com/webpack/renderer/d7285ffbbd0ca6d1d2179f7d22ea1f67.svg';
$linkDescription = 'Learn to code interactively, for free.';


$my_name = "peter";    

echo "<img>" . $linkImage . "</img>"; 



echo $linkName;
    echo "<br>";
echo $linkURL;
    echo "<br>";
echo $linkImage;
    echo "<br>";
echo $linkDescription;    






$linkImage = 'https://production.cdmycdn.com/webpack/renderer/d7285ffbbd0ca6d1d2179f7d22ea1f67.svg';

echo '<img src="data:image/jpeg;base64,">';
?>  






</body>
</html>

2 个答案:

答案 0 :(得分:2)

在html中使用src标签时,应始终将指向图像的链接置于img属性中。

这意味着您应该寻找类似"<img src=".$linkImage."></img>"之类的东西,而不是"<img>".$linkImage."</img>"

当然,只有在您要指出的问题是“免费学习交互式编码”这一句之后应该有一个图片的情况下,这才适用。

答案 1 :(得分:0)

enter image description here

对我来说很好。尝试检查php权限。