I'm trying to get a fake movie website going for a University project. But because I'm a designer, I'm terrible at php (and my terminology is probably way off). Let me know if something doesn't make sense or is badly explained.

我正试图让一个假的电影网站去大学项目。但是因为我是一名设计师,我在php上很糟糕(而且我的术语可能很偏僻)。如果某些事情没有意义或者说得不好,请告诉我。

I'm using http://themoviedb.org's API to bring in movie data, and am struggling on one of the pages.

我正在使用http://themoviedb.org的API来引入电影数据,并在其中一个页面上挣扎。

I'm pulling a JSON string in from their API, and trying to get the first 'backdrop' image to display (there are high ranging numbers of backdrops per different movie, from none up to about twenty). There are different sizes of 'backdrop' as well, ranging from the 'original' size, down to a 'thumb'. I'm trying to pull in just the first 'backdrop' which is called the size 'poster'.

我正在从他们的API中提取一个JSON字符串,并试图获得第一个“背景”图像(每个不同的电影有大量的背景幕,从无到二十几个)。 “背景”也有不同的尺寸,从“原始”尺寸到“拇指”。我试图引入第一个'背景',称为尺寸'海报'。

So here's what I've got. The problem is - to me - it looks perfectly structured, but just returns the fallback 'no-backdrop.gif'.

所以这就是我所拥有的。问题是 - 对我来说 - 它看起来很完美,但只是返回后备'no-backdrop.gif'。

<?php
    //TMDb id for a movie
    $tmdb_id = $_GET["id"];

    //Search Movie with default return format
    $movies_result = $tmdb->getMovie($tmdb_id);

    // Decode JSON into PHP array
    $movies = json_decode($movies_result);
?>
<?php
    // Set default poster image to use if movie doesn't have one
    $backdrop_url = 'no-backdrop.gif';

    if ($movies[0]->backdrops->image->size == 'poster') {
      $backdrop_url = $movies[0]->backdrops->image->url;
    }

    echo '<img src="' . $backdrop_url . '" />';
?>


And here's is the json string. Which is massive unfortunately, so I've had to cut out what seems to be irrelevant to me.

这是json字符串。不幸的是,这是巨大的,所以我不得不削减似乎与我无关的东西。

The full string can be found at the bottom of the page on the link below.

完整的字符串可以在下面链接的页面底部找到。

Array ( [0] => stdClass Object ( ......... [backdrops] => Array ( [0] => stdClass Object ( [image] => stdClass Object ( [type] => backdrop [size] => original [height] => 1080 [width] => 1920 [url] => http://cf1.imgobject.com/backdrops/9b1/4d0095bd7b9aa1514a0069b1/black-swan-original.jpg [id] => 4d0095bd7b9aa1514a0069b1 ) ) [1] => stdClass Object ( [image] => stdClass Object ( [type] => backdrop [size] => poster [height] => 439 [width] => 780 [url] => http://cf1.imgobject.com/backdrops/9b1/4d0095bd7b9aa1514a0069b1/black-swan-poster.jpg [id] => 4d0095bd7b9aa1514a0069b1 ) ) [2] => stdClass Object ( [image] => stdClass Object ( [type] => backdrop [size] => thumb [height] => 169 [width] => 300 [url] => http://cf1.imgobject.com/backdrops/9b1/4d0095bd7b9aa1514a0069b1/black-swan-thumb.jpg [id] => 4d0095bd7b9aa1514a0069b1 ) ) [3] => stdClass Object ( [image] => stdClass Object ( [type] => backdrop [size] => w1280 [height] => 720 [width] => 1280 [url] => http://cf1.imgobject.com/backdrops/9b1/4d0095bd7b9aa1514a0069b1/black-swan-w1280.jpg [id] => 4d0095bd7b9aa1514a0069b1 ) ) [4] => stdClass Object ( [image] => stdClass Object ( [type] => backdrop [size] => original [height] => 1080 [width] => 1920 [url] => http://cf1.imgobject.com/backdrops/9bb/4d00977f7b9aa1514a0069bb/black-swan-original.jpg [id] => 4d00977f7b9aa1514a0069bb ) ) [5] => stdClass Object ( [image] => stdClass Object ( [type] => backdrop [size] => poster [height] => 439 [width] => 780 [url] => http://cf1.imgobject.com/backdrops/9bb/4d00977f7b9aa1514a0069bb/black-swan-poster.jpg [id] => 4d00977f7b9aa1514a0069bb ) ) [6] => stdClass Object ( [image] => stdClass Object ( [type] => backdrop [size] => thumb [height] => 169 [width] => 300 [url] => http://cf1.imgobject.com/backdrops/9bb/4d00977f7b9aa1514a0069bb/black-swan-thumb.jpg [id] => 4d00977f7b9aa1514a0069bb ) ) [7] => stdClass Object ( [image] => stdClass Object ( [type] => backdrop [size] => w1280 [height] => 720 [width] => 1280 [url] => http://cf1.imgobject.com/backdrops/9bb/4d00977f7b9aa1514a0069bb/black-swan-w1280.jpg [id] => 4d00977f7b9aa1514a0069bb ) ) [8] => stdClass Object ( [image] => stdClass Object ( [type] => backdrop [size] => original [height] => 1080 [width] => 1920 [url] => http://cf1.imgobject.com/backdrops/172/4d06bcb07b9aa11bc4003172/black-swan-original.jpg [id] => 4d06bcb07b9aa11bc4003172 ) ) [9] => stdClass Object ( [image] => stdClass Object ( [type] => backdrop [size] => poster [height] => 439 [width] => 780 [url] => http://cf1.imgobject.com/backdrops/172/4d06bcb07b9aa11bc4003172/black-swan-poster.jpg [id] => 4d06bcb07b9aa11bc4003172 ) ) [10] => stdClass Object ( [image] => stdClass Object ( [type] => backdrop [size] => thumb [height] => 169 [width] => 300 [url] => http://cf1.imgobject.com/backdrops/172/4d06bcb07b9aa11bc4003172/black-swan-thumb.jpg [id] => 4d06bcb07b9aa11bc4003172 ) ) [11] => stdClass Object ( [image] => stdClass Object ( [type] => backdrop [size] => w1280 [height] => 720 [width] => 1280 [url] => http://cf1.imgobject.com/backdrops/172/4d06bcb07b9aa11bc4003172/black-swan-w1280.jpg [id] => 4d06bcb07b9aa11bc4003172 ) ) [12] => stdClass Object ( [image] => stdClass Object ( [type] => backdrop [size] => original [height] => 1080 [width] => 1920 [url] => http://cf1.imgobject.com/backdrops/c50/4d4708625e73d65704003c50/black-swan-original.jpg [id] => 4d4708625e73d65704003c50 ) ) [13] => stdClass Object ( [image] => stdClass Object ( [type] => backdrop [size] => poster [height] => 439 [width] => 780 [url] => http://cf1.imgobject.com/backdrops/c50/4d4708625e73d65704003c50/black-swan-poster.jpg [id] => 4d4708625e73d65704003c50 ) ) [14] => stdClass Object ( [image] => stdClass Object ( [type] => backdrop [size] => thumb [height] => 169 [width] => 300 [url] => http://cf1.imgobject.com/backdrops/c50/4d4708625e73d65704003c50/black-swan-thumb.jpg [id] => 4d4708625e73d65704003c50 ) ) [15] => stdClass Object ( [image] => stdClass Object ( [type] => backdrop [size] => w1280 [height] => 720 [width] => 1280 [url] => http://cf1.imgobject.com/backdrops/c50/4d4708625e73d65704003c50/black-swan-w1280.jpg [id] => 4d4708625e73d65704003c50 ) ) [16] => stdClass Object ( [image] => stdClass Object ( [type] => backdrop [size] => original [height] => 1080 [width] => 1920 [url] => http://cf1.imgobject.com/backdrops/452/4d0a52997b9aa162af000452/black-swan-original.jpg [id] => 4d0a52997b9aa162af000452 ) ) [17] => stdClass Object ( [image] => stdClass Object ( [type] => backdrop [size] => poster [height] => 439 [width] => 780 [url] => http://cf1.imgobject.com/backdrops/452/4d0a52997b9aa162af000452/black-swan-poster.jpg [id] => 4d0a52997b9aa162af000452 ) ) [18] => stdClass Object ( [image] => stdClass Object ( [type] => backdrop [size] => thumb [height] => 169 [width] => 300 [url] => http://cf1.imgobject.com/backdrops/452/4d0a52997b9aa162af000452/black-swan-thumb.jpg [id] => 4d0a52997b9aa162af000452 ) ) [19] => stdClass Object ( [image] => stdClass Object ( [type] => backdrop [size] => w1280 [height] => 720 [width] => 1280 [url] => http://cf1.imgobject.com/backdrops/452/4d0a52997b9aa162af000452/black-swan-w1280.jpg [id] => 4d0a52997b9aa162af000452 ) ) [20] => stdClass Object ( [image] => stdClass Object ( [type] => backdrop [size] => original [height] => 1080 [width] => 1920 [url] => http://cf1.imgobject.com/backdrops/443/4d0a514c7b9aa162af000443/black-swan-original.jpg [id] => 4d0a514c7b9aa162af000443 ) ) [21] => stdClass Object ( [image] => stdClass Object ( [type] => backdrop [size] => poster [height] => 439 [width] => 780 [url] => http://cf1.imgobject.com/backdrops/443/4d0a514c7b9aa162af000443/black-swan-poster.jpg [id] => 4d0a514c7b9aa162af000443 ) ) [22] => stdClass Object ( [image] => stdClass Object ( [type] => backdrop [size] => thumb [height] => 169 [width] => 300 [url] => http://cf1.imgobject.com/backdrops/443/4d0a514c7b9aa162af000443/black-swan-thumb.jpg [id] => 4d0a514c7b9aa162af000443 ) ) [23] => stdClass Object ( [image] => stdClass Object ( [type] => backdrop [size] => w1280 [height] => 720 [width] => 1280 [url] => http://cf1.imgobject.com/backdrops/443/4d0a514c7b9aa162af000443/black-swan-w1280.jpg [id] => 4d0a514c7b9aa162af000443 ) ) [24] => stdClass Object ( [image] => stdClass Object ( [type] => backdrop [size] => original [height] => 1080 [width] => 1920 [url] => http://cf1.imgobject.com/backdrops/1af/4cd5d8597b9aa11b270001af/black-swan-original.jpg [id] => 4cd5d8597b9aa11b270001af ) ) [25] => stdClass Object ( [image] => stdClass Object ( [type] => backdrop [size] => poster [height] => 439 [width] => 780 [url] => http://cf1.imgobject.com/backdrops/1af/4cd5d8597b9aa11b270001af/black-swan-poster.jpg [id] => 4cd5d8597b9aa11b270001af ) ) [26] => stdClass Object ( [image] => stdClass Object ( [type] => backdrop [size] => thumb [height] => 169 [width] => 300 [url] => http://cf1.imgobject.com/backdrops/1af/4cd5d8597b9aa11b270001af/black-swan-thumb.jpg [id] => 4cd5d8597b9aa11b270001af ) ) [27] => stdClass Object ( [image] => stdClass Object ( [type] => backdrop [size] => w1280 [height] => 720 [width] => 1280 [url] => http://cf1.imgobject.com/backdrops/1af/4cd5d8597b9aa11b270001af/black-swan-w1280.jpg [id] => 4cd5d8597b9aa11b270001af ) ) [28] => stdClass Object ( [image] => stdClass Object ( [type] => backdrop [size] => original [height] => 1080 [width] => 1920 [url] => http://cf1.imgobject.com/backdrops/453/4d0a527d7b9aa162bf000453/black-swan-original.jpg [id] => 4d0a527d7b9aa162bf000453 ) ) [29] => stdClass Object ( [image] => stdClass Object ( [type] => backdrop [size] => poster [height] => 439 [width] => 780 [url] => http://cf1.imgobject.com/backdrops/453/4d0a527d7b9aa162bf000453/black-swan-poster.jpg [id] => 4d0a527d7b9aa162bf000453 ) ) [30] => stdClass Object ( [image] => stdClass Object ( [type] => backdrop [size] => thumb [height] => 169 [width] => 300 [url] => http://cf1.imgobject.com/backdrops/453/4d0a527d7b9aa162bf000453/black-swan-thumb.jpg [id] => 4d0a527d7b9aa162bf000453 ) ) [31] => stdClass Object ( [image] => stdClass Object ( [type] => backdrop [size] => w1280 [height] => 720 [width] => 1280 [url] => http://cf1.imgobject.com/backdrops/453/4d0a527d7b9aa162bf000453/black-swan-w1280.jpg [id] => 4d0a527d7b9aa162bf000453 ) ) [32] => stdClass Object ( [image] => stdClass Object ( [type] => backdrop [size] => original [height] => 1080 [width] => 1920 [url] => http://cf1.imgobject.com/backdrops/ed2/4d616c627b9aa154bf004ed2/black-swan-original.jpg [id] => 4d616c627b9aa154bf004ed2 ) ) [33] => stdClass Object ( [image] => stdClass Object ( [type] => backdrop [size] => poster [height] => 439 [width] => 780 [url] => http://cf1.imgobject.com/backdrops/ed2/4d616c627b9aa154bf004ed2/black-swan-poster.jpg [id] => 4d616c627b9aa154bf004ed2 ) ) [34] => stdClass Object ( [image] => stdClass Object ( [type] => backdrop [size] => thumb [height] => 169 [width] => 300 [url] => http://cf1.imgobject.com/backdrops/ed2/4d616c627b9aa154bf004ed2/black-swan-thumb.jpg [id] => 4d616c627b9aa154bf004ed2 ) ) [35] => stdClass Object ( [image] => stdClass Object ( [type] => backdrop [size] => w1280 [height] => 720 [width] => 1280 [url] => http://cf1.imgobject.com/backdrops/ed2/4d616c627b9aa154bf004ed2/black-swan-w1280.jpg [id] => 4d616c627b9aa154bf004ed2 ) ) [36] => stdClass Object ( [image] => stdClass Object ( [type] => backdrop [size] => original [height] => 1080 [width] => 1920 [url] => http://cf1.imgobject.com/backdrops/486/4d0a526e7b9aa162b7000486/black-swan-original.jpg [id] => 4d0a526e7b9aa162b7000486 ) ) [37] => stdClass Object ( [image] => stdClass Object ( [type] => backdrop [size] => poster [height] => 439 [width] => 780 [url] => http://cf1.imgobject.com/backdrops/486/4d0a526e7b9aa162b7000486/black-swan-poster.jpg [id] => 4d0a526e7b9aa162b7000486 ) ) [38] => stdClass Object ( [image] => stdClass Object ( [type] => backdrop [size] => thumb [height] => 169 [width] => 300 [url] => http://cf1.imgobject.com/backdrops/486/4d0a526e7b9aa162b7000486/black-swan-thumb.jpg [id] => 4d0a526e7b9aa162b7000486 ) ) [39] => stdClass Object ( [image] => stdClass Object ( [type] => backdrop [size] => w1280 [height] => 720 [width] => 1280 [url] => http://cf1.imgobject.com/backdrops/486/4d0a526e7b9aa162b7000486/black-swan-w1280.jpg [id] => 4d0a526e7b9aa162b7000486 ) ) ) ......... ) ) 


or to see it failing in action, you could go here - http://rowancavanagh.com/getfilm/tmdb_movie.php?id=44214
(complete with the json string printed at the bottom)

或者看到它失败了,你可以去这里 - http://rowancavanagh.com/getfilm/tmdb_movie.php?id=44214(完整的底部印有json字符串)

1 个解决方案

#1


1

The backdrops property is an array, you have to access it as an array:

backdrops属性是一个数组,您必须以数组形式访问它:

$backdrop_url = $movies[0]->backdrops[0]->image->url;

Try turning on error_reporting and/or display_errors or log_errors, this is an error that is easily caught with these on: "Trying to get property of non-object".

尝试启用error_reporting和/或display_errors或log_errors,这是一个很容易被这些错误捕获的错误:“试图获取非对象的属性”。

Also, use isset in your if to prevent an E_NOTICE from popping if there is no image:

另外,如果没有图像,请在if中使用isset以防止E_NOTICE弹出:

if (isset($movies[0]->backdrops[0]->image->size) &&
    $movies[0]->backdrops[0]->image->size == 'poster') 
{
    // stuff
}

If you have more than one element in backdrops, and want to fetch only the one with the poster type, use a foreach loop:

如果背景中有多个元素,并且只想获取具有海报类型的元素,请使用foreach循环:

foreach ($movies[0]->backdrops as $backdrop) {
    if (isset($backdrop->image->size) && $backdrop->image->size == 'poster') {
        $backdrop_url = $backdrop->image->url;
        break;
    }
}

更多相关文章

  1. 测试一个字符串是否包含PHP中的单词?
  2. 几个有用的php字符串过滤,转换函数代码
  3. PHP - 将字符串转换为键值数组
  4. 使用mod_rewrite将文件夹转换为查询字符串
  5. 计算字符串的MD5哈希值
  6. 有一种防弹的方法可以检测php字符串中的base64编码吗?
  7. 在两个不同的地方分割/爆炸一个PHP字符串
  8. PHP中的嵌套(多个)字符串插值
  9. 查找具有特定数据字符串的数组并返回其具有的另一个数据字符串

随机推荐

  1. Android O / Android 8.0 新特性及开发指
  2. 阅读《Android(安卓)从入门到精通》(11)—
  3. Android 事件流详解之View事件分发
  4. Android深度定制化TabLayout:圆角,渐变色,背
  5. 另一个视角搞android——《Android软件安
  6. 修改android原型button样式
  7. android自学笔记 开始--->第一个应用--->
  8. 设置Listview item 的分隔线
  9. Android(安卓)SQLiteStatement 编译、执
  10. Android(安卓)APK反编译详解(附图)