|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
?? ??? 2000, Version 4.0.2
+- Fixed memory leaks in eval(); A script that used eval() extensively, could
+ end up consuming very large amounts of memory during execution (Zeev, Zend
+ Engine)
- Fixed memory_limit feature, which did not work properly in previous versions
(Zeev, Zend Engine)
- Fixed stdout support with the swf extension. (Sterling)
#if HAVE_SYS_TIME_H
PHP_FE(socket_set_timeout, NULL)
#else
- PHP_FALIAS(socket_set_timeout , warn_not_available, NULL)
+ PHP_FALIAS(socket_set_timeout, warn_not_available, NULL)
#endif
PHP_FE(socket_get_status, NULL)
+#if !PHP_WIN32 || defined(ZTS)
PHP_FE(realpath, NULL)
+#else
+ PHP_FALIAS(realpath, warn_not_available, NULL)
+#endif
/* functions from fsock.c */
PHP_FE(fsockopen, third_and_fourth_args_force_ref)
/* }}} */
+#if !PHP_WIN32 || defined(ZTS)
/* {{{ proto string realpath(string path)
Return the resolved path */
PHP_FUNCTION(realpath)
}
}
/* }}} */
-
+#endif
#if 0