-1

我收到致命错误:在运行以下代码时不在对象上下文中使用 $this。我正在编写一个脚本来将我的电子邮件转发到另一个帐户。请帮我。我是php的新手。错误指出了这if (is_resource($this->connection))条线。但据我所知,那里一切都很好。

$hostname = '{imap.xyz.com:993/imap/ssl}INBOX';
$username = 'aaaaa@xyz.com';
$password = 'xxxxxxxxx';

$connection = imap_open($hostname,$username,$password) or die('Cannot connect to Tiriyo: ' . imap_last_error());

function Message_Parse($id)
{
    if (is_resource($this->connection))
    {
        $result = array
        (
            'text' => null,
            'html' => null,
            'attachments' => array(),
        );
    $structure = imap_fetchstructure($this->connection, $id, FT_UID);

    if (array_key_exists('parts', $structure))
    {
        foreach ($structure->parts as $key => $part)
        {
            if (($part->type >= 2) || (($part->ifdisposition == 1) && ($part->disposition == 'ATTACHMENT')))
            {
                $filename = null;

                if ($part->ifparameters == 1)
                {
                    $total_parameters = count($part->parameters);

                    for ($i = 0; $i < $total_parameters; $i++)
                    {
                        if (($part->parameters[$i]->attribute == 'NAME') || ($part->parameters[$i]->attribute == 'FILENAME'))
                        {
                            $filename = $part->parameters[$i]->value;

                            break;
                        }
                    }

                    if (is_null($filename))
                    {
                        if ($part->ifdparameters == 1)
                        {
                            $total_dparameters = count($part->dparameters);

                            for ($i = 0; $i < $total_dparameters; $i++)
                            {
                                if (($part->dparameters[$i]->attribute == 'NAME') || ($part->dparameters[$i]->attribute == 'FILENAME'))
                                {
                                    $filename = $part->dparameters[$i]->value;

                                    break;
                                }
                            }
                        }
                    }
                }

                $result['attachments'][] = array
                (
                    'filename' => $filename,
                    'content' => str_replace(array("\r", "\n"), '', trim(imap_fetchbody($this->connection, $id, ($key + 1), FT_UID))),
                );
            }

            else
            {
                if ($part->subtype == 'PLAIN')
                {
                    $result['text'] = imap_fetchbody($this->connection, $id, ($key + 1), FT_UID);
                }

                else if ($part->subtype == 'HTML')
                {
                    $result['html'] = imap_fetchbody($this->connection, $id, ($key + 1), FT_UID);
                }

                else
                {
                    foreach ($part->parts as $alternative_key => $alternative_part)
                    {
                        if ($alternative_part->subtype == 'PLAIN')
                        {
                            echo '<h2>' . $alternative_part->subtype . ' ' . $alternative_part->encoding . '</h2>';

                            $result['text'] = imap_fetchbody($this->connection, $id, ($key + 1) . '.' . ($alternative_key + 1), FT_UID);
                        }

                        else if ($alternative_part->subtype == 'HTML')
                        {
                            echo '<h2>' . $alternative_part->subtype . ' ' . $alternative_part->encoding . '</h2>';

                            $result['html'] = imap_fetchbody($this->connection, $id, ($key + 1) . '.' . ($alternative_key + 1), FT_UID);
                        }
                    }
                }
            }
        }
    }

    else
    {
        $result['text'] = imap_body($this->connection, $id, FT_UID);
    }

    $result['text'] = imap_qprint($result['text']);
    $result['html'] = imap_qprint(imap_8bit($result['html']));

    return $result;
        }

return false;
}
$to      = 'aaaa@gmail.com';
$subject = 'the subject';
$message = 'test';

$id=1;
Message_Parse($id);
$headers = 'From: aaa@xyz.com' . "\r\n" .
    'Reply-To: aaa@xyz.com' . "\r\n" .
    'X-Mailer: PHP/' . phpversion();
$mail = mail($to, $subject, $result, $headers);
if($mail){
echo "YES";
} else{
echo "NO";
}
4

3 回答 3

0

$this仅存在于属于类的方法中。$this不存在于函数或不属于类的任何其他地方。查看有关基本 OOP的 PHP 手册页以了解更多信息。

如果您想引用全局变量$connection,可以通过将函数的开头更改为:

function Message_Parse($id)
{
    global $connection;
    if (is_resource($connection))
    {

请注意,尽管在任何语言中使用全局变量都是不好的编程习惯。

于 2012-10-04T18:18:12.770 回答
0

只需更改$this->connection$connection. $this仅在您上课时适用。此外,您可能需要global $connection;在函数顶部调用。我相信任何未传递给参数的变量都需要调用这个关键字。

有关“全局关键字”的信息,请参见:http: //php.net/manual/en/language.variables.scope.php

于 2012-10-04T18:18:18.183 回答
0

正如所有其他人所说,你不在一个对象内,所以你不能使用 $this。

但是你在一个函数内部,所以你也不能访问这个函数之外的任何变量,除非你让它可以访问。

使用的解决方案有效,但如果你有一天决定应该重命名global你的全局变量,它会让你下地狱。$connection

更好的解决方案是将其作为第二个参数传递给您的函数。

function Message_Parse($id)应该成为function Message_Parse($id, $connection)

if (is_resource($this->connection))应该成为if (is_resource($connection))

$id=1; Message_Parse($id);应该成为$id=1; Message_Parse($id, $connection);

完毕。

于 2012-10-04T18:29:32.287 回答