mirror of
https://github.com/php/php-src.git
synced 2026-04-22 23:48:14 +02:00
6738241aec
Scalar FFI values now should be accessed through special "cdata" property.
$x = FFI::new("int");
$x = 42;
should be changed into
$x = FFI::new("int");
$x->cdata = 42;