fix php formatting

thanks @kleisauke !
This commit is contained in:
John Cupitt 2017-04-23 22:09:17 +01:00
parent 9434f1f86d
commit f0cb008e23

View File

@ -17,7 +17,7 @@ The thumbnailing functionality is implemented by `vips_thumbnail()` and
see the docs for details. You can use these functions from any language
with a libvips binding. For example, from PHP you could write:
```PHP
```php?start_inline=1
$filename = "image.jpg";
$image = Vips\Image::thumbnail($filename, 200, ["height" => 200]);
$image->writeToFile("my-thumbnail.jpg");