diff options
author | Dmitry Stogov <dmitry@zend.com> | 2019-05-28 17:08:35 +0300 |
---|---|---|
committer | Dmitry Stogov <dmitry@zend.com> | 2019-05-28 17:08:35 +0300 |
commit | 6738241aece97979bdb7531babcfdf12e3c4b45b (patch) | |
tree | 3cad40616ec6e5ab42895022df5e51b773ba34e9 /ext/xml/xml.c | |
parent | 6893f1f98e1c73d4eece1827f0dc4fedc059a67d (diff) | |
download | php-git-6738241aece97979bdb7531babcfdf12e3c4b45b.tar.gz |
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;
Diffstat (limited to 'ext/xml/xml.c')
0 files changed, 0 insertions, 0 deletions