我正在尝试安装PECL OAuth,但我收到一条错误消息(我使用macbook mountain lion).
In file included from /private/tmp/pear/temp/oauth/oauth.c:14:
/private/tmp/pear/temp/oauth/php_oauth.h:20:10: fatal error: 'php.h' file not found
#include "php.h"
^
1 error generated.
make: *** [oauth.lo] Error 1
ERROR: `make' failed
Run Code Online (Sandbox Code Playgroud)
有人知道怎么解决吗?
谢谢,尼米
最近,在用户尝试通过"我/ Feed"路线分享帖子后,我从Facebook API获得临时错误.
错误消息是:
"message":"Service temporarily unavailable",
"type":"FacebookApiException",
"is_transient":true, "code":2,
"error_subcode":1609010,
"error_user_title":"URL Not Found",
"error_user_msg":"We had trouble using the URL you provided. Please try again later.",
"fbtrace_id":"DgSULoXJMfK"
Run Code Online (Sandbox Code Playgroud)
有谁知道这可能是什么原因?
我正在尝试与og标签共享页面。标签之一是og:image,如以下链接中所述:https : //developer.linkedin.com/documents/setting-display-tags-shares 我共享的图像是合法的。
出于某种原因,一旦我通过LinkedIn共享按钮共享页面,linkedin就不会显示图像(尽管它会显示其他标签的值)。
我的og:image标签:
meta property =“ og:image” content =“ http://mywebsite.comm/difa2fz.png”
任何的想法?
A和B具有相同签名的功能 - 让我们假设:foo($arg)
- 和那个class A extends B
.
现在我有一个实例:
$a = new A();
$a.foo($data);
Run Code Online (Sandbox Code Playgroud)
我还可以通过父级(B)的foo()
功能运行$a
还是被覆盖?
谢谢!NIMI