-1
  if(isset($basic)){
    function meme(){
    $i = 1;
    while(file_exists("pg/".$i.".jpg")){
    $file[$i] = "pg/".$i.".jpg";
    $i++;
    }
    }
    $file[1] = 'pg_1.jpg';
    $file[2] = 'pg_2.jpg';
    $file[3] = 'pg_3.jpg';
    $file[4] = 'pg_4.jpg';
    $file[5] = 'pg_5.jpg';
    $file[6] = 'pg_6.jpg';
    $file[7] = 'pg_7.jpg';
    $file[8] = 'pg_8.jpg';
    $file[9] = 'pg_9.jpg';
    $file[10] = 'pg_10.jpg';
    $file[11] = 'pg_11.jpg';
    $file[12] = 'pg_12.jpg';
    $file[13] = 'pg_13.jpg';
    $file[14] = 'pg_14.jpg';

    $tuomeme = 'pg/'.$file[rand(1, 14)];
    $album_details = array(
            'message'=> 'CiaoCiao',
            'name'=> 'CiaoCiaoCiao'
    );
    $create_album = $facebook->api('/me/albums', 'post', $album_details) or die("Errore nella connessione con Facebook");
    $album_uid = $create_album['id'];
    $photo_details = array(
        'message'=> he(idx($basic, 'name')).''
    );
    $finale=$tuomeme;
    $photo_details['image'] = '@' . realpath($finale);
    $upload_photo = $facebook->api('/'.$album_uid.'/photos', 'post', $photo_details) or die("Errore nella connessione con Facebook");

粗体错误是:

[2012 年 6 月 18 日 19:30:32 UTC] PHP 警告:session_start() [function.session-start]:无法发送会话 cookie - 标头已由(输出开始于 /home/xtigbexz/public_html/dev/index .php:27) 在第 7 行的 /home/public_html/sdk_php/facebook.php [18-Jun-2012 19:30:32 UTC] PHP 警告:session_start() [function.session-start]:无法发送会话缓存限制器 - 第 7 行 [2012 年 6 月 18 日 19:30:36 UTC ] PHP致命错误:未捕获的CurlException:26:无法打开文件“”

在第 423 行抛出 /home/public_html/sdk_php/base_facebook.php

你能帮助我吗?请!

4

1 回答 1

0

文件的第 27 行/home/xtigbexz/public_html/dev/index.php正在生成输出。之后您正在调用 Facebook API,它试图设置一个$_SESSION$_COOKIE变量。在脚本生成一些输出后,您无法设置其中任何一个。

于 2012-06-18T19:52:04.433 回答