CONFIG.M4 PHP_ARG_ENABLE(sample, [Whether to enable the "sample" extension], [ enablesample Enable "sample" extension support]) if test $PHP_SAMPLE != "no"; then PHP_SUBST(SAMPLE_SHARED_LIBADD) PHP_NEW_EXTENSION(sample, sample.c, $ext_shared) fi Makefile 5 . 2
FEEDBACK TO PHP QA This report can be automatically sent to the PHP QA team at http://qa.php.net/reports and http://news.php.net/php.qa.reports This gives us a better understanding of PHP's behavior. If you don't want to send the report immediately you can choose option "s" to save it. You can then email it to qa‐[email protected] Do you want to send this report now? [Yns]: > export NO_INTERACTION=1 6 . 7
GET THE TYPE switch (Z_TYPE_P(value)) { case IS_NULL : php_printf("NULL"); break; case IS_TRUE : php_printf("Boolean: TRUE"); break; case IS_FALSE : php_printf("Boolean: FALSE"); break; C 14 . 3
MORE ABOUT ZVAL https://nikic.github.io/2015/05/05/Internal-value- representation-in-PHP-7-part-1.html http://jpauli.github.io/2016/01/14/php-7-objects.html 15 . 5