在 PHP 脚本运行时添加加载图像


Adding loading image while PHP script runs

我有一个PHP脚本(粘贴在下面),它从URL列表中提取元数据,问题是加载可能需要一段时间,用户永远不知道何时完全完成(除非他们关注浏览器选项卡中的加载图标)

我已经在网上寻找了很长时间,但找不到解决方案,我已经阅读了我可以使用 Ajax,但我究竟如何在这个脚本上使用它?

感谢您的帮助!

<script type="text/javascript">
function showContent(vThis)
{
    // http://www.javascriptjunkie.com
    // alert(vSibling.className + " " + vDef_Key);
    vParent = vThis.parentNode;
    vSibling = vParent.nextSibling;
    while (vSibling.nodeType==3) { // Fix for Mozilla/FireFox Empty Space becomes a TextNode or         Something
        vSibling = vSibling.nextSibling;
    };
    if(vSibling.style.display == "none")
    {
        vThis.src="collapse.gif";
        vThis.alt = "Hide Div";
        vSibling.style.display = "block";
    } else {
        vSibling.style.display = "none";
        vThis.src="expand.gif";
        vThis.alt = "Show Div";
    }
    return;
}
</script>

<form method="POST" action=<?php echo "'".$_SERVER['PHP_SELF']."'";?> >
<textarea name="siteurl" rows="10" cols="50">
<?php //Check if the form has already been submitted and if this is the case, display the   submitted content. If not, display 'http://'.
echo (isset($_POST['siteurl']))?htmlspecialchars($_POST['siteurl']):"http://";?>
</textarea><br>
<input type="submit" value="Submit">
</form>
</div>
<div id="nofloat"></div>
<div style="margin-top:5px;">
<h4><img src="expand.gif" alt="Show Div" border="0" style="margin-right:6px; margin-  top:3px; margin-bottom:-3px; cursor:pointer;" onclick="showContent(this);" />Show me the    script working!</h4>
<div style="margin-top:5px; display:none;">
<table class="metadata" id="metatable_1">
<?php
ini_set('display_errors', 0);
ini_set( 'default_charset', 'UTF-8' );
error_reporting(E_ALL);
//ini_set( "display_errors", 0);
function parseUrl($url){
    //Trim whitespace of the url to ensure proper checking.
    $url = trim($url);
    //Check if a protocol is specified at the beginning of the url. If it's not,     prepend 'http://'.
    if (!preg_match("~^(?:f|ht)tps?://~i", $url)) {
            $url = "http://" . $url;
    }
    //Check if '/' is present at the end of the url. If not, append '/'.
    if (substr($url, -1)!=="/"){
            $url .= "/";
    }
    //Return the processed url.
    return $url;
}
//If the form was submitted
if(isset($_POST['siteurl'])){
    //Put every new line as a new entry in the array
    $urls = explode("'n",trim($_POST["siteurl"]));
    //Iterate through urls
    foreach ($urls as $url) {
            //Parse the url to add 'http://' at the beginning or '/' at the end if not   already there, to avoid errors with the get_meta_tags function
            $url = parseUrl($url);
            //Get the meta data for each url
            $tags = get_meta_tags($url);
            //Check to see if the description tag was present and adjust output    accordingly
            $tags = NULL;
$tags = get_meta_tags($url);
if($tags)
echo "<tr><td>$url</td><td>" .$tags['description']. "</td></tr>";
else 
echo "<tr><td>$url</td><td>No Meta Description</td></tr>";
    }
}
?>
</table>
</div>
<script type="text/javascript">
        var exportTable1=new ExportHTMLTable('metatable_1');
    </script>
<div>
        <input type="button" onclick="exportTable1.exportToCSV()"   value="Export to CSV"/>
        <input type="button" onclick="exportTable1.exportToXML()"   value="Export to XML"/>
    </div>
</div>

想法:

将 php 代码添加到其他文件

显示加载图像

然后调用这个函数

function Load()
{
    var xmlhttp;
    var url;
    if (window.XMLHttpRequest)
    {// code for IE7+, Firefox, Chrome, Opera, Safari
        xmlhttp=new XMLHttpRequest();
    }
    else
    {// code for IE6, IE5
        xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
    }
    xmlhttp.onreadystatechange=function()
    {
        if (xmlhttp.readyState==4 && xmlhttp.status==200)
        {           
            //(optional)do something with response: xmlhttp.responseText
            document.getElementById("area").innerHTML=xmlhttp.responseText;
            document.getElementById("loadingimage").src = "afterloading.gif";
        }
    }
    xmlhttp.open("GET","phpfile.php",true);
    xmlhttp.send();
}

这个函数转到你的JavaScript位置,然后在文档完成加载后用jQuery调用它,或者

<body onload="Load()">

在身体的地方

类似
<img id="loadingimage" src="loading.gif"/>
<div id="area">...</div>

提取完成工作的部分(<?php ini_set [...] ?>),将其存储在单独的文件(例如GetMetaData.php中,并使其返回JSON或XML。

然后,您可以捕获提交事件,并使其异步地将用户输入的 URL 发布到 GetMetaData 脚本。当该调用返回时,您可以使用脚本返回的数据填充表。

正如我在评论中提到的,这里基本上有两种选择。 第一个依赖于javascript来工作,第二个依赖于输出缓冲来提供关于正在发生的事情的"运行评论",并且取决于脚本中可以输出进度报告的合理点。

AJAX

方法只是将执行繁重工作的代码放在自己的 PHP 脚本中,该脚本可以通过 AJAX 进行。 然后,主页只是一个加载屏幕和一个 javascript,它调用通过 AJAX 完成工作的脚本。 当 AJAX 脚本完成时,可以触发一个回调函数,将返回的结果格式化为 HTML,并将其显示在加载屏幕的位置。

另一种方法涉及在脚本的主循环中使用输出缓冲和刷新。

while ($task_not_complete)
{
    do_some_more_work ();
    echo ('<p>Something indicating how much progress has been made goes here</p>');
    ob_flush ();
    flush ();
}

这种方法不需要javascript,但它有其自身的缺点。 首先,根据在 Web 服务器或客户端和服务器之间可能存在的任何代理中设置缓冲的方式,它可能根本不起作用,并且在脚本完成之前根本不返回任何输出。 其次,在服务器上的脚本完成并且浏览器收到结束</html>标记之前,DOM 树将无效。 这意味着页面使用的任何 javascript 在执行的进程完成之前都无法可靠地执行 DOM 操作。