Instructions and explanations of PHP extension library:
php_bz2.dll bzip2 compression function library None
php_calendar.dll calendar conversion function library Since PHP 4.0.3, built-in
php_cpdf.dll ClibPDF function library has no
php_crack.dll Password cracking function library has no
php_ctype.dll ctype family function library has built-in
php_curl since PHP 4.3.0. dll CURL, client URL library function library requires: libeay32.dll, ssleay32.dll (included)
php_cybercash.dll PHP extension library network cash payment function library PHP php_db.dll The DBM function library is deprecated. Replace it with DBA (php_dba.dll)
php_dba.dll DBA: Database (dbm style) abstraction layer function library None
php_dbase.dll dBase function library None
php_dbx.dll dbx function library
php_domxml .dll DOM XML function library PHP = 4.3.0 requires: iconv.dll (included)
php_dotnet.dll .NET function library PHP php_exif.dll The EXIF function library requires php_mbstring.dll. And in php.ini, php_exif.dll must be loaded after php_mbstring.dll.
php_fbsql.dll FrontBase function library PHP php_fdf.dll FDF: Form data formatting function library requires: fdftk.dll (included)
php_filepro.dll filePro function library read-only Visit
php_ftp.dll. The FTP function library is built-in since PHP 4.0.3.
php_gd.dll GD PHP extension library image function library was deleted in PHP 4.3.2. Also note that true color functions cannot be used in GD1, use php_gd2.dll instead.
php_gd2.dll GD library image function library GD2
php_gettext.dll Gettext function library PHP = 4.2.3 requires libintl-1.dll , iconv.dll (included).
php_hyperwave.dll No HyperWave function library
php_iconv.dll ICONV character set conversion requires: iconv-1.3.dll (included), PHP >=4.2.1 requires iconv.dll
php_ifx.dll Informix Function library requires: Informix library
php_iisfunc.dll IIS PHP extension library management function library None
php_imap.dll IMAP, POP3 and NNTP function library None
php_ingres.dll Ingres II Function library requires: Ingres II library
php_interbase.dll InterBase functions requires: gds32.dll (included)
php_java.dll Java PHP extension library function library PHP php_ldap .dll LDAP function library PHP = 4.3.0 requires libeay32.dll, ssleay32.dll (included)
php_mbstring.dll multi-byte characters String function library does not have
php_mcrypt.dll Mcrypt encryption function library requires: libmcrypt.dll
php_mhash.dll Mhash function library PHP >= 4.3.0 requires: libmhash.dll (included)
php_mime_magic.dll Mimetype function library requires: magic.mime (included)
php_ming.dll Ming function library (Flash) None
php_msql.dll mSQL function library requires: msql.dll (included)
php_mssql.dll MSSQL Function library requires: ntwdblib.dll (included)
php_mysql.dll MySQL function library PHP >= 5.0.0 Requires libmysql.dll (included)
php_mysqli.dll MySQLi PHP extension library function library PHP > ;= 5.0.0 requires libmysql.dll (libmysqli.dll in PHP php_oci8.dll Oracle 8 libraries require: Oracle 8.1+ client library
php_openssl. dll OpenSSL function library requires: libeay32.dll (included)
php_oracle.dll Oracle function library requires: Oracle 7 client library
php_overload.dll object overload function library built-in since PHP 4.3.0
php_pdf.dll PDF function library none
php_pgsql.dll PostgreSQL function library none
php_printer.dll Printer function library none
php_shmop.dll PHP extension library shared memory function library none
php_snmp.dll SNMP function Library is for Windows NT only!
php_soap.dll SOAP function library PHP >= 5.0.0
php_sockets.dll Socket function library None
php_sybase_ct.dll Sybase function library requires: Sybase client library
php_tidy.dll Tidy function library PHP >= 5.0.0
php_tokenizer.dll Tokenizer function library is built-in since PHP 4.3.0
php_w32api.dll W32api function library is not available
php_xmlrpc.dll XML-RPC function library PHP >= 4.2. 1 Requires iconv.dll (included)
php_xslt.dll XSLT function library PHP = 4.2.1 requires sablot.dll, expat.dll, iconv.dll (included).
php_yaz.dll YAZ function library requires: yaz.dll (included)
php_zip.dll Zip file function library read-only access
php_zlib.dll ZLib PHP extension library compression function library since PHP 4.3.0 Built-in

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

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

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

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

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

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

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

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


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

SublimeText3 Mac version
God-level code editing software (SublimeText3)

SublimeText3 Linux new version
SublimeText3 Linux latest version

Dreamweaver Mac version
Visual web development tools
