- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我有这个包装器可以从 Joomla 中加载一个 symfony 项目
class NZGBCComponentHelper {
function requestAndFollow($path = '') {
$c = 0;$first = 1;$httpcode = 0;
$uri = JRequest::getVar('uri');
while ($c <= 4 && ($first || $httpcode == 302)){
$first = 0;
$finalSfUrl = NZGBCComponentHelper::buildRequestUri($uri, $path);
$ch = curl_init($finalSfUrl);
if(JRequest::getMethod() == 'POST' && $httpcode != 302){
curl_setopt($ch, CURLOPT_POST, 1);
$postThrough = array_merge(JRequest::get($_POST),array('_csrf_token' => $_POST['_csrf_token']));
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($postThrough));
}
// Get sf content
curl_setopt($ch, CURLOPT_REFERER, JURI::getInstance()->root().$path);
curl_setopt($ch, CURLOPT_HEADERFUNCTION, 'readHeader');
curl_setopt($ch, CURLOPT_HEADER, 1);
curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
curl_setopt($ch, CURLOPT_COOKIE, 'symfony='.$_COOKIE['symfony']);
$return = curl_exec($ch);
$httpcode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
if (!$return){
$error = curl_error($ch);
}
if($this->headers['Set-Cookie']){
JResponse::setHeader('Set-Cookie', $mainframe->sym_headers['Set-Cookie']);
}
if ($httpcode >= 400){
$return = "There was an <!--$finalSfUrl--> error ";
mail ('jd@automatem.co.nz', 'symfony wrapper error',
$finalSfUrl."\r\n".
$httpcode."\r\n".
$return
);
}else if ($httpcode == 302){
$query = parse_url(trim($mainframe->sym_headers['Location']), PHP_URL_QUERY);
parse_str($query);
parse_str($uri);
if ($outside == 'true'){
JApplication::redirect(trim(urldecode($uri)));
}
}
curl_close($ch);
$c++;
}
return $return;
}
}
if (!function_exists('readHeader')){
function readHeader($ch, $header){
$mainframe =& JFactory::getApplication();
if($pos = strpos($header, ':')){
$mainframe->sym_headers[substr($header, 0, $pos)] = substr(strstr($header, ':'), 1);
}
return strlen($header);
}
}
requestAndFollow 是静态调用的。我如何引用 readHeader() 而不是将其放入全局函数空间。我试过:
curl_setopt($ch, CURLOPT_HEADERFUNCTION, array(&$this,'readHeader'));//didn't expect this to work - no $this when statically called
curl_setopt($ch, CURLOPT_HEADERFUNCTION, array('NZGBCComponentHelper','readHeader'));
curl_setopt($ch, CURLOPT_HEADERFUNCTION, array(self,'readHeader'));
最佳答案
看起来这在
但不在
两个版本的解决方法是将 header 函数放在全局空间中
curl_setopt($ch, CURLOPT_HEADERFUNCTION, 'readHeader');
关于php - curl_setopt($ch, CURLOPT_HEADERFUNCTION, array(&$this ,'readHeader' )) 不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6482068/
package practicejava; public class Query { public static void main(String[] args) { char
因为我很困惑其中会存储什么。它是 ascii 值还是“z”,因为有些网站说它存储 ascii,有些网站说它存储“z”。链接说答案是“z”:http://cprogrammingworld4u.blog
这个问题在这里已经有了答案: mysql_fetch_array()/mysql_fetch_assoc()/mysql_fetch_row()/mysql_num_rows etc... expec
我无法将字符指针数组 s 的字符存储到字符数组 ch 中: int main() { char *s; s = malloc(1024 * sizeof(char));
我有这个代码: int main() { char ch[15]; cout<
在看《C++ Primer Plus 5th edition》时,看到了这样一段代码: cin.get(ch); ++ch; cout void print_type(cha
这行代码做了什么? char_to_ix = { ch:i for i,ch in enumerate(sorted(chars)) } ch:i 是什么意思? 最佳答案 这是@han solo 中提
这行代码做了什么? char_to_ix = { ch:i for i,ch in enumerate(sorted(chars)) } ch:i 是什么意思? 最佳答案 这是@han solo 中提
我在关注《C Primer Plus》这本书,遇到这样一段代码: // echo_eof.c -- repeats input to end of file. #include int main(v
这个问题在这里已经有了答案: Difference between int* a and int *a [duplicate] (2 个答案) Why is the asterisk before
我正在运行单个 goroutine 来处理与某些用户相关的消息 channel 。处理消息后,用户状态由 goroutine 更新并存储在数据库中。当对数据库的请求正在进行时,可以将许多消息发送到 c
这是完整的代码: s = 'life is short, stunt it!!?' from string import punctuation tbl = str.maketrans({ord(ch
在 C++ 中,(int) ch 是否等同于 int(ch)。 如果不是,有什么区别? 最佳答案 它们是同一个东西,也和(int)(ch)一样.在 C++ 中,通常首选使用命名转换来阐明您的意图: 使
我在 php 中使用 cURL。注意到每次启动 curl 案例时,人们总是把: $ch=curl_init(); “$ch”是什么意思? curl -F template_invoke_name='s
我正在编写与对齐相关的代码,如果给定的指针正确对齐,却没有标准的功能测试,这让我感到非常惊讶。 似乎互联网上的大多数代码都使用(long)ptr或 reinterpret_cast(ptr)测试对齐,
这个问题已经有答案了: C skipping one command of a function? [duplicate] (2 个回答) 已关闭 5 年前。 scanf("%c", &ch ) sc
然后我遇到了系统调用“write”,我尝试将“putchar”与“write”进行比较。现在,我对上面的代码行感到困惑。 最佳答案 putchar 是一个库函数。它调用 write 系统调用将字符写入
在 codechef 上用于更快输入输出的许多解决方案中,我遇到过这个表达式,但我无法理解它,因为我没有很多经验。 inline int scan( ) { int n=0; int ch=getch
这个问题在这里已经有了答案: What does space in scanf mean? [duplicate] (6 个答案) 关闭 7 年前。 像这样在scanf中加一个空格的目的是什么 sc
我的 spring-boot 应用程序中有以下 logback.xml: ... ...
我是一名优秀的程序员,十分优秀!