0

您好,我想使用此 php 代码来计算 dic 中的 jpg 文件。

$directory = "../images/team/harry/";
if (glob($directory . "*.jpg") != false)
{
 $filecount = count(glob($directory . "*.jpg"));
 echo $filecount;
}
else
{
 echo 0;
}

我现在如何在我的 mootool 脚本中使用 $filecount?最好的问候马蒂亚斯。

4

2 回答 2

0

您只需将 $filecount 作为内联 javascript 回显,或者您可以通过 Ajax 请求结果。

于 2012-12-12T16:01:38.807 回答
0

PHP 是一种服务器端语言。Mootools 是 JavaScript,对吧?

http://mootools.net/docs/core/Request/Request

var myRequest = new Request({
    url: 'http://yourserver.com/jpgs.php',
    onSuccess: function(res, xml){
        console.log(res);
    }
});

myRequest.send();
于 2012-12-12T16:03:11.013 回答