Facebook 图表在服务器上抛出错误,在本地主机上正常

发布于 2024-09-05 04:26:08 字数 595 浏览 3 评论 0原文

我正在使用新的 facebook 图形 API,当我推送到网络服务器时出现奇怪的错误。

我的代码非常简单, fbmain.php 调用 facebook.php

<?php
include_once "fbmain.php";


$ab = $facebook->api('/cocacola/feed');
 echo ($ab['data']['0']['message']);

当我在本地运行它时,它工作得很好,没有任何错误。

当我在服务器上运行它时,出现错误:

Parse error: parse error, unexpected '{' in /home/content/w/e/s/wesbos/html/clients/audiobooks/wp-content/themes/ab/fb/fbmain.php  on line 6

fbmain.php 的部分内容导致问题是:

    try{
    include_once "facebook.php";
}

知道为什么这在我的服务器上不起作用吗?

I'm using the new facebook graph API and getting an odd error when I push to a web server.

My Code is pretty simple with fbmain.php calling facebook.php

<?php
include_once "fbmain.php";


$ab = $facebook->api('/cocacola/feed');
 echo ($ab['data']['0']['message']);

When I run this locally, it works great without any errors.

When I run it on my server, I get the error:

Parse error: parse error, unexpected '{' in /home/content/w/e/s/wesbos/html/clients/audiobooks/wp-content/themes/ab/fb/fbmain.php  on line 6

The part of fbmain.php its saying is causing the problem is :

    try{
    include_once "facebook.php";
}

Any idea why this wouldn't work on my server?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

断舍离 2024-09-12 04:26:08

结果我运行的是 PHP 4.x,而 try{} 仅在 php5 中引入。问题解决了。

Turned out I was running PHP 4.x and try{} was only introduced in php5. Problem solved.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文