C Type Handles

(PHP 7 >= 7.4.0)

Wstęp

Krótki opis klasy

FFI\CType {
}
add a note add a note

User Contributed Notes 1 note

up
-1
scorninpc at php dot net
4 years ago
You can compare CTypes if you want to know if the type are correct

\FFI::typeof(\FFI::addr($a)) == \FFI::typeof(\FFI::new("void *"))

CType need some methods, like equal() or toString(), but .....
To Top