1

我需要一些帮助来解决我遇到的这个疯狂问题

我有一个类,我使用 Curl 从 URL 获取数据,并使用该信息 $_GET 的每个变量一个值。

所以我有这个类,我正在使用一个新文件来获取发布在一个新函数中的项目的 $name 但每次我将短语变量放在新函数中我都会得到 NULL 这里是我的类简而言之

class AppStore {

  public $name;


public function getData() {
       $requestUrl = self::APPSTORE_LOOKUP_URL . $this->appIdentity;

       $ch = curl_init($requestUrl);
                curl_setopt($ch, CURLOPT_URL, $requestUrl);
                curl_setopt($ch, CURLOPT_FOLLOWLOCATION, false);
                curl_setopt($ch, CURLOPT_REFERER, "");
                curl_setopt($ch, CURLOPT_COOKIESESSION, true);
                curl_setopt($ch, CURLOPT_USERAGENT, $this->iTunesUserAgent);
                curl_setopt($ch, CURLOPT_ENCODING, 0);
                curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
                curl_setopt($ch, CURLOPT_FAILONERROR, true);
                curl_setopt($ch, CURLOPT_TIMEOUT, 30);
                $response = curl_exec($ch);
                $errno = curl_errno($ch);
                curl_close($ch);


        $parsedResponse = json_decode($response, true);
        if ($parsedResponse['resultCount'] == 1)
         {
            $parsedResponse = $parsedResponse['results'][0];

            $this->name = $parsedResponse['trackName'];
             require_once('func.ini.php'); // new function to save images etc
        } else {
            throw new AppStoreService_Exception("mInvalid data returned from the AppStore Web Service. Check your app ID, and verify that the Appstore is currently up.");
        }

} 

}

// This is the func.ini.php code
echo $parsedResponse['trackName']; // Works here output equals a Name like Baraka etc
function save_image($img){

    $dirs = "data/Apps/".$name; // Gets the name of the ID in the appIdentity so we can use CURL to download images and move the images to new folder else it'll fail and won't move 
    $path = $dirs."ScreenShots";
    $fullp = basename($img);
    $fullpath = "$path/$fullp";
    $something = $dirs.'ScreenShots'

    var_dump($parsedResponse['trackName']); // Null same if i echo it i get a white page etc

    /* Sample Code 
    $ch = curl_init ($img);
    curl_setopt($ch, CURLOPT_URL,$img);
    curl_setopt($ch, CURLOPT_HEADER, 0);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    curl_setopt($ch, CURLOPT_BINARYTRANSFER,1);
    */

}

基本上,如果您可以查看我是否尝试添加我的类的变量以在新函数中获取 appIdentity 的名称,save_image 它将为空,我不确定如何返回 $this-> name ($parsedResponse['trackName']) 对于新函数等中的所有使用都是全局的,因为我的类使用公共 getData() 然后 $this->name (getData()->name)

这仅适用于任何函数,因此如果有函数,则设置为 name 的变量将仅具有函数上方的值,我希望这是可以理解的。

不确定我是否需要在 $this->name 中进行返回或什么,因为我尝试在 getName() 下方的类中创建一个新的公共函数,结果也为 null,因此我无法在其中设置公共变量a = 语句,因为它会从 try{} 中捕获(e),询问它期望 T_FUNCTION 比 T_VARIABLE 即 public $name = $name; // 错误 public $name = 'Test'; // 有效 '{$name}' 无效

class Test {

public $test = 'Help me out please!';
  function GetMe() {
      echo $this->test;
  } 

}

$open = new Test;
echo $open->GetMe(); // Outputs "Help me out please"

/* 我不能用变量来做这件事:( ig $this->name / $parsedResponse['trackName'] */

如果有人可以帮助我,我将不胜感激

4

1 回答 1

1

创建您的类的实例并运行设置name变量的函数。

// Create an instance of AppName
$app_store = new AppName();

// Run the function
$app_store->getData();

然后,您可以在类之外的其他函数中使用生成的 $name 变量:

// By Making the instance global
function save_image()
{
    global $app_store;

    // Show the value of name
    echo $app_store->name;
}

或者...通过将它传递给您想要使用它的任何函数

function save_image2($name_var)
{
    echo $name_var;
}

// Called like
save_image2($app_store->name);
于 2012-11-13T09:02:11.710 回答