Cairo::version

cairo_version

(PECL cairo >= 0.1.0)

Cairo::version -- cairo_versionRetrives cairo's library version

설명

객체 기반 형식 (method):

public static int Cairo::version ( void )

절차식 형식:

int cairo_version ( void )

Retrieves the current version of the cairo library as an integer value

인수

이 함수는 인수가 없습니다.

반환값

Current Cairo library version integer

예제

Example #1 객체 기반 형식

<?php
var_dump
(Cairo::version());
?>

위 예제의 출력 예시:

int(10808)

Example #2 절차식 형식

<?php
var_dump
(cairo_version());
?>

위 예제의 출력 예시:

int(10808)

참고

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top