1
0
mirror of https://github.com/php/php-src.git synced 2026-04-22 23:48:14 +02:00
Files
archived-php-src/ext/ffi/tests
Dmitry Stogov 6738241aec Avoid usage of internal get/set object handlers. They are going to be removed in PHP-8.
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;
2019-05-28 17:08:35 +03:00
..
2019-02-12 13:57:44 +01:00
2019-03-20 02:41:08 +03:00
2019-05-07 04:40:01 +02:00
2019-02-19 10:03:14 +01:00
2019-02-19 10:03:14 +01:00
2019-05-07 04:40:01 +02:00