search
HomeBackend DevelopmentPHP TutorialComplete list of PHP built-in functions_PHP tutorial
Complete list of PHP built-in functions_PHP tutorialJul 20, 2016 am 11:00 AM
absadaphpvaluefunctionEncyclopediaofabsolute valueBring your owndatabase

Abs: Get the absolute value.
Acos: Get the arc cosine value.
ada_afetch: Get the returned column from the database.
ada_autocommit: Switch the automatic change function.
ada_close: Close the Adabas D link.
ada_commit: Modify the Adabas D database.
ada_connect: Connect to the Adabas D database.
ada_exec: Execute SQL instructions.
ada_fetchrow: Get a column returned.
ada_fieldname: Get the field name.
ada_fieldtype: Get the field data form.
ada_freeresult: Release the memory of the returned data.
ada_numfields: Get the number of fields.
ada_numrows: Get the number of returned columns.
ada_result: Get the returned data.
ada_resultall: Returns HTML table data.
ada_rollback: Undo the current transaction.
AddSlashes: Add slashes to the string.
apache_lookup_uri: Get all URI related information.
apache_note: Get and set the Apache server's request record.
array: Create a new array.
array_walk: Allows user-defined functions to process each element in the array.
arsort: Sort the array values ​​from large to small.
Asin: Get the arcsine value.
asort: Sort the array values ​​from small to large.
aspell_check: Check a word.
aspell_check-raw: Checks a word and does not change or correct it even if it is misspelled.
aspell_new: Load a new dictionary.
aspell_suggest: Check a word and provide spelling suggestions.
Atan: Get the arctangent value.
Atan2: Calculates the arctangent of a two number.
base64_decode: Decode BASE64 encoded string.
base64_encode: Encode the string in BASE64.
basename: Returns the file string without path.
base_convert: Convert the carry method of the number.
bcadd: Add two high-precision numbers.
bccomp: Compares two high-precision numbers.
bcdiv: Divide two high-precision numbers.
bcmod: Get the remainder of a high-precision number.
bcmul: Multiply two high-precision numbers.
bcpow: Find the power of a high-precision number.
bcscale: Sets the default number of decimal points for all BC libraries in the program.
bcsqrt: Find the square root of a high-precision number.
bcsub: Subtract two high-precision numbers.
bin2hex: Convert binary to hexadecimal.
BinDec: Convert binary to decimal.
Ceil: Calculates the smallest integer greater than the specified number.
chdir: change directory.
checkdate: Verify the correctness of the date.
checkdnsrr: Check the DNS records of the specified URL.
chgrp: Change the group to which a file belongs.
chmod: Change file attributes.
Chop: Remove consecutive blanks.
chown: Change the owner of the file.
Chr: Returns the ordinal value of characters.
chunk_split: Divide the string into small segments.
clearstatcache: Clear the file status cache.
closedir: close the directory handle.
closelog: Close system logging.
connection_aborted: Returns true if the connection is interrupted.
connection_status: Get the connection status.
connection_timeout: Returns true if the PHP program execution time is exceeded.
convert_cyr_string: Convert Cyrillic strings into other strings.
copy: Copy the file.
Cos: cosine calculation.
count: Counts the number of elements in a variable or array.
crypt: Encrypt the string using DES encoding.
current: Returns the current element in the array.
date: Format the server's time.
dbase_add_record: Add data to the dBase data table.
dbase_close: Close the dBase table.
dbase_create: Create dBase data table.
dbase_delete_record: Delete data from the dBase data table.
dbase_get_record: Get the data of dBase table.
dbase_numfields: Get the number of fields in the dBase data table.
dbase_numrecords: Get the number of columns in the dBase data table.
dbase_open: Open the dBase data table.
dbase_pack: Clean up the dBase data table.
dba_close: Close the database.
dba_delete: Delete specified data.
dba_exists: Check whether the key exists.
dba_fetch: Retrieve specified data.
dba_firstkey: Retrieve the first key value.
dba_insert: Add data.
dba_nextkey: Get the next key value.
dba_open: Open the database link.
dba_optimize: Optimize the database.
dba_popen: Open and maintain the database connection.
dba_replace: change or add data.
dba_sync: Database synchronization.
dblist: Get DBM information.
dbmclose: Close the DBM database.
dbmdelete: Delete specified data.
dbmexists: Check if the key exists.
dbmfetch: Retrieve specified data.
dbmfirstkey: retrieve the first key name.
dbminsert: Add data.
dbmnextkey: Get the next key value.
dbmopen: Open a DBM database link.
dbmreplace: change or add data.
debugger_off: Turn off the built-in PHP debugger.
debugger_on: Use the built-in PHP debugger.
DecBin: Convert decimal to binary.
DecHex: Convert decimal to hexadecimal.
DecOct: Convert decimal to octal.
delete: useless items.
die: Output a message and interrupt the PHP program.
dir: Directory category object.
dirname: Get the directory name in the path.
diskfreespace: Get the remaining free space where the directory is located.
dl: Load PHP extension module.
doubleval: Convert the variable into a double floating-point number type.
each: Returns the index and value of the next element in the array.
easter_date: Calculate Easter date.
easter_days: Calculate the number of days between Easter and March 21st.
echo: output string.
empty: Determines whether the variable has been set.
end: Points the internal pointer of the array to the last element.
ereg: String comparison analysis.
eregi: String comparison analysis, regardless of case.
eregi_replace: String comparison analysis and replacement, regardless of case.
ereg_replace: String comparison analysis and replacement.
error_log: Send an error message.
error_reporting: Set the level of error message reporting.
escapeshellcmd: Remove special symbols from strings.
eval: Substitute value into string.
exec: Execute external program.
exit: End the PHP program.
Exp: The natural logarithm e raised to the power.
explode: split the string.
extract: Import array into symbol table.
fclose: Close an open file.
FDF_close: Close the FDF file.
FDF_create: Create a new FDF file.
FDF_get_file: Get the value of /F key.
FDF_get_status: Get the value of the /STATUS key.


www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/445535.htmlTechArticleAbs: Get the absolute value. Acos: Get the arc cosine value. ada_afetch: Get the returned column from the database. ada_autocommit: Switch the automatic change function. ada_close: Close the Adabas D link. ada_...
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”。

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怎么替换nbsp空格符php怎么替换nbsp空格符Apr 24, 2022 pm 02:55 PM

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

php怎么读取字符串后几个字符php怎么读取字符串后几个字符Apr 22, 2022 pm 08:31 PM

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

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

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

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
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor