gpt4 book ai didi

PHP 脚本无法按特定顺序运行

转载 作者:搜寻专家 更新时间:2023-10-31 21:06:37 25 4
gpt4 key购买 nike

我有一个简单的 HTML 代码,它使用指向如下所示的 PHP 脚本的链接来显示图像。加载 HTML 页面后,我想在浏览器中显示图像并向特定的电子邮件地址发送电子邮件。

下面列出的 PHP 脚本可以正常工作。但是,当我将“在浏览器客户端中显示图像”代码从脚本的顶部移动到底部时,程序只发送电子邮件而不会将图像返回到 HTML 页面。有人可以告诉我为什么会发生这种情况以及我该如何解决它。

HTML 页面代码:

<body>

<img src="http://www.inoxel.com/test/image&email.php >

</body>

image&email.php 有效的 PHP 脚本文件:

<?php

// Show image in browser client.

$logo = "http://www.Inoxel.com/test/happy_face2.gif"; // Set image Full Path

readfile($logo);

// Send a test email.

ini_set( 'display_errors', 1 );
error_reporting( E_ALL );
$from = "abc@efg.com";
$to = "def@pac.net";
$subject = "PHP Mail Test script";
$message = "This is a test to check the PHP Mail functionality";
$headers = "From:" . $from;
mail($to,$subject,$message, $headers);
echo "Test email sent";

?>

image&email.php PHP 脚本文件不起作用:

<?php

// Send a test email.

ini_set( 'display_errors', 1 );
error_reporting( E_ALL );
$from = "abc@efg.com";
$to = "def@pac.net";
$subject = "PHP Mail Test script";
$message = "This is a test to check the PHP Mail functionality";
$headers = "From:" . $from;
mail($to,$subject,$message, $headers);
echo "Test email sent";

// Show image in browser client.

$logo = "http://www.Inoxel.com/test/happy_face2.gif"; // Set image Full Path

readfile($logo);

?>

最佳答案

您在 readfile 之前使用了 echo,这是行不通的。

关于PHP 脚本无法按特定顺序运行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31287463/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com