I am testing PHP7 and am experiencing a strange problem after a recent update. SimpleXML should be enabled by default, and my phpinfo page shows that it is available:

However, functions are not available:
<?php if (function_exists('simplexml_load_file')) { echo "simpleXML functions are available.<br />\n"; } else { echo "simpleXML functions are not available.<br />\n"; }
And the module is not listed as loaded:
~ $ php -m [PHP Modules] calendar Core ctype curl ... Reflection session shmop sockets SPL standard sysvmsg sysvsem sysvshm tokenizer Zend OPcache zlib
Does anyone know if a workaround is for this?
Version Information:
~ $ php -v PHP 7.0.3-8+deb.sury.org~trusty+2 (cli) ( NTS ) Copyright (c) 1997-2016 The PHP Group Zend Engine v3.0.0, Copyright (c) 1998-2016 Zend Technologies with Zend OPcache v7.0.6-dev, Copyright (c) 1999-2016, by Zend Technologies
php php-7 simplexml
user101289 Feb 24 '16 at 4:51 2016-02-24 04:51
source share