mirror of
https://github.com/php/php-src.git
synced 2025-08-15 13:38:49 +02:00

@cname currently refers to the constant name in C. However, it is not always a (constant) name, but sometimes a function invocation, so naming it as @cvalue would be more appropriate.
30 lines
704 B
PHP
30 lines
704 B
PHP
<?php
|
|
|
|
/** @generate-class-entries */
|
|
|
|
/**
|
|
* @var int
|
|
* @cvalue USE_MBSTRING
|
|
*/
|
|
const EXIF_USE_MBSTRING = UNKNOWN;
|
|
|
|
/** @refcount 1 */
|
|
function exif_tagname(int $index): string|false {}
|
|
|
|
/**
|
|
* @param resource|string $file
|
|
* @return array<string, mixed>|false
|
|
* @refcount 1
|
|
*/
|
|
function exif_read_data($file, ?string $required_sections = null, bool $as_arrays = false, bool $read_thumbnail = false): array|false {}
|
|
|
|
/**
|
|
* @param resource|string $file
|
|
* @param int $width
|
|
* @param int $height
|
|
* @param int $image_type
|
|
* @refcount 1
|
|
*/
|
|
function exif_thumbnail($file, &$width = null, &$height = null, &$image_type = null): string|false {}
|
|
|
|
function exif_imagetype(string $filename): int|false {}
|