从外部文件PHP变量?(PHP variable from external file?)

2019-08-17 02:24发布

*编辑/终止液/工作代码

所以,这是我的一个朋友帮我想出了。

下面是我在K2“items.php”文件中使用的部分:

<div class="fb-comments" data-href="<?php echo JURI::current(); ?>" data-num-posts="8" notify="true" data-width="580"></div>

<input id="authname" style="display: none;" type="text" value="<?php echo $this->item->author->name; ?>" />
<input id="authmail" style="display: none;" type="text" value="<?php echo $this->item->author->email; ?>" />
<input id="link" style="display: none;" type="text" value="<?php echo JURI::current(); ?>" />

<script>
window.fbAsyncInit = function() {
FB.Event.subscribe('comment.create', function (response) {

    var commentQuery = FB.Data.query("SELECT text, fromid FROM comment WHERE post_fbid='" + response.commentID +
    "' AND object_id IN (SELECT comments_fbid FROM link_stat WHERE url='" + response.href + "')");
    var userQuery = FB.Data.query("SELECT name FROM user WHERE uid in (select fromid from {0})", commentQuery);

        FB.Data.waitOn([commentQuery, userQuery], function () {
            var commentRow = commentQuery.value[0];
            var userRow = userQuery.value[0];
            console.log(userRow.name + " (id: " + commentRow.fromid + ") posted the comment: " + commentRow.text);
            trackcomments(response['commentID'], response['href'], 'create', commentRow.text, userRow.name, commentRow.fromid);
        });
    });
};

function trackcomments(_commentid, _address, _action, _commentMessage, _userName, _userId) {
    var authname = document.getElementById('authname').value;
    var authmail = document.getElementById('authmail').value;
    var link = document.getElementById('link').value;

    $.ajax({
        type: 'POST',
        url: 'http://mydomain.com/dostuff.php', 
        data: {'commentMessage': _commentMessage, 'userName': _userName, 'authname': authname, 'authmail': authmail, 'link': link},
        cache: false
    });

};
</script>

这是do_stuff.php:

<?php

    //Handle some weird letters and stuff
    setlocale(LC_TIME, 'swedish'); 

    //creating an $author variable and populating it from $_POST
    $author = $_POST['authname'];
    $authoremail = $_POST['authmail'];
    $link = $_POST['link'];
    $commentMessage = $_POST['commentMessage'];
    $userName = $_POST['userName'];

    $date = strftime('%A %e %b %Y %H.%M', time());

    //getting author email
    $to = $authoremail;

    //subject of email      
    $subject = "New comment posted on mydmomain.com";

    //email content
    $message = "On $date $userName wrote\n\n$commentMessage\n\non your entry $link#comments\n\nUse the above link to answer on the comment.";

    //who the mail is from
    $from = "admin@mydomain.com";

    //header
    $headers = "From:" . $from;

    //send the email
    mail($to,$subject,$message,$headers);
?>

事实证明,有它不工作...的JavaScript似乎不处理PHP一个简单的理由!

因此,“do_stuff.php”(早些时候被任命为sendmail.php)从未与回波JURI执行::基地();.

即使是这样,虽然。 该VAR = $这个 - >项目...也试图摆脱这是不工作的PHP变量的数据。 因此,打击的是把隐藏式输入方式,其中这些变量的值来检索它们直通getObjectById。

就像我的朋友说,不知道这是最优雅的或复杂的解决方案...但它的伎俩,并填充它的目的。

但是,如果有人拥有实现这一目标的一个更好的更“正确”的方式,我所有的耳朵:)

感谢您@jack的帮助! 和其他人造成这一问题的未来。

-原来的职位-

仍在学习PHP和Joomla和K2。 一直坐在UPP天现在试图找出我怎么能有具体的作者发送电子邮件时,注释使用FB提出:意见。

到目前为止好... comment.create演技FB.event.subscribe未经用户操作

现在,唯一缺少的是referens变量“$用品 - >作者 - >名称”。 由于这是在我打电话的sendmail.php原始文件(item.php)可用

<script>
window.fbAsyncInit = function() {

    /* All the events registered */
    FB.Event.subscribe('comment.create', function (response) {
        $.get('<?php echo JURI::base(); ?>sendmail.php');
    });
};
</script>

这就是“sendmail.php”文件

<?php
    if ($item->author->name == "Firstname1 Lastname1"){
        $to = "author1@mydomain.com";
    }else if ($item->author->name == "Firstname2 Lastname2"){
        $to = "author2@mydomain.com";
    };

    $subject = "New comment";
    $message = "A new comments has been made.";
    $from = "admin@mydomain.com";
    $headers = "From:" . $from;
    mail($to,$subject,$message,$headers);
?>

我不知道我怎么可以得到$用品 - >作者 - >名工作。 由于我需要确保它在某种程度上检查,看名字是什么(因为它显示生成的页面上我必须能够以某种方式使用它)来指定要发送的电子邮件到。

我不知道如果这已经问过,但我甚至不知道该怎么寻找到让我开始在这里。 我无法想象,这将是难以解决的问题(如果你只知道你需要改变什么)。 :)

Answer 1:

您可以尝试通过作者的名字在你的Ajax调用的参数。 这些方针的东西:

FB.Event.subscribe('comment.create', function (response) {
     var name = $item->author->name;
        $.get('<?php echo JURI::base(); ?>sendmail.php'), new {'authorName': name};
    });

然后在你的sendmail的脚本,你应该能够访问传递authorName参数...

if (authorName == "Firstname1 Lastname1"){...

你也可以使用$。员额的参数发送到sendmail的脚本。

注:这是未经测试并从内存中,但希望它会指向你在正确的方向。 它也已经有一段时间,因为我最后一次与Joomla工作,并有可能实现这个美好的Joomla特定的方式。

编辑:这是一个使用POST的变量传递给sendmail脚本的例子:

FB.Event.subscribe('comment.create', function (response) {
     var name = $item->author->name;
        $.ajax({
                type: "POST",
                url:'<?php echo JURI::base(); ?>sendmail.php'), 
                data: authorName,
                cache: false, 
             });
});

...在你的sendmail.php文件:

<?php
    //creating an $author variable and populating it from $_POST
    $author = $_POST['authorName'];

    if ($author == "Firstname1 Lastname1"){
        $to = "author1@mydomain.com";
    }else if ($author == "Firstname2 Lastname2"){
        $to = "author2@mydomain.com";
    };

    $subject = "New comment";
    $message = "A new comments has been made.";
    $from = "admin@mydomain.com";
    $headers = "From:" . $from;
    mail($to,$subject,$message,$headers);
?>

再次,这是未经测试,但应该给你一个想法。 由于您使用的Joomla,你也应该看看Joomla的com_mailto组件,它可能会或可能不容易。 您可以搜索与“通过AJAX传递参数给外部的PHP脚本”或类似的规定进一步信息。

此外,这里有一个参考的jQuery AJAX



文章来源: PHP variable from external file?