search
HomeBackend DevelopmentPHP TutorialPHP4.1.0 Publication Announcement Chinese and English Version 2_PHP Tutorial

PHP 4.1.0 Release Announcement PHP 4.1.0 Release Announcement (2) - Added support for single dimensional SafeArrays and Enumerations. Added an is_enum() function to check if a component implements an enumeration. (Alan, Harald) Added support for one dimension SafeArray and Enumerations. Added is_enum(0 to determine whether a component comes from an enumeration - Fixed a bug in dbase_get_record() and dbase_get_record_with_names(). boolean fields are now returned correctly. Patch by Lawrence E. Widman (Jani) Fixed dbase_get_record () and dbase_get_record_with_names(). Now correctly returns boolean fields. - Added --version option to php-config. (Stig) Improved support for thttpd-2.21b by incorporating patches for all known bugs. (Sascha) Enhanced support for thttpd-2.21b by adding patches for known bugs - Added ircg_get_username, a roomkey argument to ircg_join, error fetching infrastructure, a tokenizer to speed up message processing, and fixed a lot of bugs in the IRCG extension. (Sascha) Added ircg_get_username, an ircg_join parameter, an error acquisition mechanism, and a tokenizer to speed up information processing, and fixed many bugs in the IRCG extension. - Improved speed of the serializer/deserializer. (Thies) , Sascha) Faster serialization/deserialization - Floating point numbers are better detected when converting from strings. (Zeev, Zend Engine) Replaced php.ini-optimized with php.ini-recommended. As the name implies, its warmly recommended to use this file as the basis for your PHP configuration, rather than php.ini-dist. (Zeev) Renamed php.ini-optimized to php.ini- recommended. The name implies that he only enthusiastically recommends users to use this file as the basic configuration file of PHP instead of using php.ini.dist - Restore xpath_eval() and php_xpathptr_eval() for 4.0.7. There are still some known leaks . (Joey) Fixed xpatch_eval() and php_xpatchptr_eval(), which also have some known vulnerabilities - Added import_request_variables(), to allow users to safely import form variables to the global scope (Zeev) Added import_request_variables(), to allow User-safe output from variables to global scope - Introduced a new $_REQUEST array, which includes any GET, POST or COOKIE variables. Like the other new variables, this variable is also available regardless of the context. Introduced by (Andi & Zeev) A new $_REQUEST array, including any GET, POST or COOKIE variables. Like other new variables, this variable can be used regardless of its context - Introduced $_GET, $_POST, $_COOKIE, $_SERVER and $_ENV variables , which deprecate the old $HTTP_*_VARS arrays. In addition to be much shorter to type - these variables are also available regardless of the scope, and theres no need to import them using the global statement. (Andi & Zeev) introduced $ _GET, $POST, $COOKIE, $SERVER and $_ENV variables, the old $HTTP_*_VARS array is deprecated. In addition they are shorter, these variables can be used in any scope, there is no need to use global to refer to them. - Added vprintf() and vsprintf() functions that allow passing all arguments after format as an array. (Andrei) Added bprintf() and vsprintf() functions that allow you to pass all arguments after format as an array. - Added support for GD2 image type for ImageCreateFromString() (Jani) Added ImageCreateFormString() support for GD2 image format - Added ImageCreateFromGD(), ImageCreateFromGD2(), ImageCreateFromGD2part(), ImageGD() and ImageGD2() functions (Jani) The above functions - addcslashes now warns when charlist is invalid. The returned string remained the same (Jeroen) addcslashes gives a warning when the character list is illegal and returns the previous string - Added optional extra argument to gmp_init(). The extra argument indicates which number base gmp should use when converting a string to the gmp-number. (Troels) Added optional extra arguments to gmp_init(). The parameter indicates the numeric base when gmp converts a string to a gmp-number - Added the Cyrus-IMAP extension, which allows a direct interface to Cyrus more advanced capabilities. (Sterling) Added the Cyrus-IMAP extension, which allows a direct interface to Cyrus Direct interface for advanced features - Enhance read_exif_data() to support multiple comment tags (Rasmus) Fixed a crash bug in array_map() when NULL callback was passed in. (Andrei) Defects in array_map() when the callback is NULL - Change from E_ERROR to E_WARNING in the exif extension (Rasmus) Change E_ERRPR to E_WARNING in the exif extension - New pow() implementation, which returns an integer when possible, and warnings on wrong input (jeroen) New pow() function.Returns an integer when possible, and returns a warning if the input is incorrect - Added optional second parameter to trim, chop and ltrim. You can now specify which characters to trim (jeroen) Added a second parameter to trim, chop, ltrim. Specify which characters are removed - Hugely improved the performance of the thread-safe version of PHP, especially under Windows (Andi & Zeev) Greatly improved the performance of the thread-safe version of PHP, especially under Windows - Improved request-shutdown performance significantly (Andi & Zeev, Zend Engine) Significantly improved request-shutdown performance - Added a few new math functions. (Jesus) Bump bundled expat to 1.95.2 ( Thies ) [I don’t understand, it seems that the compressed package has been upgraded to 1.95.2] - Improved the stability of OCIPlogon() after a database restart. (Thies) Improved the stability of OCIPlogon() after a database restart. - Fixed __FILE__ in the CGI & Java servlet modes when used in the main script. It only worked correctly in included files before this fix (Andi) Working with include files - Improved the Zend hash table implementation to be much faster (Andi, Zend Engine) Improved the Zend hash table to be much faster - Updated PHPs file open function (used by include()) to check in the calling scripts directory in case the file cant be found in the include_path (Andi) Updated the file open function (used in include()) to detect the file in the directory of the calling script if the file is not found in include_path - Fixed a corruption bug that could cause constants to become corrupted, and possibly prevent resources from properly being cleaned up at the end of a request (Zeev) Fixed a bug that could cause container interruptions, possibly preventing resources from being cleaned up properly after the request was completed - Added optional use of Boyer-Moore algorithm to str_replace() (Sascha) str_replace() adds an optional Boyer-Moore rule - Fixed and improved shared-memory session storage module (Sascha) Fixed and improved shared memory transaction storage module - Add config option (always_populate_raw_post_data) which when enabled will always populate $HTTP_RAW_POST_DATA regardless of the post mime type (Rasmus) Added configuration parameter (always_populate_raw_post_data), allowing $HTTP_RAW_POST_DATA to be bundled regardless of any post type - Added support for socket and popen file types to ftp_fput (Jason ) Added socket and popen file types for ftp_fput - Fixed various memory leaks in the LDAP extension (Stig Venaas) Fixed various memory leaks in the LDAP extension - Improved interactive mode - it is now available in all builds of PHP, without any significant slowdown (Zeev, Zend Engine) Improved interactive mode, works in all PHP without any significant slowdown - Fixed crash in iptcparse() if the supplied data was bogus. (Thies) Fixed iptcprase ( ) Bug in case the supplied data is forged, - Fixed return value for a failed snmpset() - now returns false (Rasmus) Fixed return value of snmpset() being false - Added hostname:port support to snmp functions (nbougues@axialys.net, Rasmus) Added support for hostname:port format of snmp function - Added fdf_set_encoding() function (Masaki YATSU, Rasmus) Added fdf_set_encoding() function - Reversed the destruction-order of resources. This fixes the reported OCI8 "failed to rollback outstanding transactions!" message (Thies, Zend Engine) and reverses the resource destruction order. He corrected the "failed to roolback outstanding transactions!" message reported in OCI8 - Added option for returning XMLRPC fault packets. (Matt Allen, Sascha Schumann) Added the return parameters of XMLRPC error packets - Improved range() function to support range (a,z) and range(9,0) types of ranges. (Rasmus) Improved range() function to support range(a,z) and range(9,0) formats - Added getmygid() and safe_mode_gid ini directive to allow safe mode to do a gid check instead of a uid check. (James E. Flemer, Rasmus) Added configuration instructions for getmugid() and sage_mod_gid to allow gid check instead of uid check in safe mode - Made assert() accept the array(&$obj, methodname) syntax

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/532220.htmlTechArticlePHP 4.1.0 Release Announcement PHP 4.1.0 Release Announcement (2) - Added support for single dimensional SafeArrays and Enumerations . Added an is_enum() function to check if a component imp...
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

最新可用的win7旗舰版密钥2021版最新可用的win7旗舰版密钥2021版Jul 08, 2023 pm 02:37 PM

激活win7旗舰版系统的方法主要是通过win7激活码或者win7激活工具,一般正版的win7激活码是需要花钱的,那么在哪里有免费可用的win7旗舰版密钥呢?今天小编就给大家分享些最新可用的win7旗舰版密钥用于激活系统。一、win7旗舰版激活密钥神key:FJGCP-4DFJD-GJY49-VJBQ7-HYRR2VQ3PY-VRX6D-CBG4J-8C6R2-TCVBD2Y4WT-DHTBF-Q6MMK-KYK6X-VKM6G342DG-6YJR8-X92GV-V7DCV-P4K279CW99-

php怎么实现几秒后执行一个函数php怎么实现几秒后执行一个函数Apr 24, 2022 pm 01:12 PM

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php怎么除以100保留两位小数php怎么除以100保留两位小数Apr 22, 2022 pm 06:23 PM

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php怎么根据年月日判断是一年的第几天php怎么根据年月日判断是一年的第几天Apr 22, 2022 pm 05:02 PM

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php字符串有没有下标php字符串有没有下标Apr 24, 2022 am 11:49 AM

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

php怎么判断有没有小数点php怎么判断有没有小数点Apr 20, 2022 pm 08:12 PM

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

php怎么替换nbsp空格符php怎么替换nbsp空格符Apr 24, 2022 pm 02:55 PM

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\&nbsp\;||\xc2\xa0)/","其他字符",$str)”语句。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),