Home php教程 php手册 推荐常用PHP函数索引

推荐常用PHP函数索引

Jun 13, 2016 am 11:10 AM
abs php effect function Commonly used recommend index absolute value grammar

★ Abs

作用:取得绝对值。

语法:mixed abs(mixed number);

★ Acos

作用:取得反余弦值

语法:float acos(float arg);

★ ada_afetch

作用:取得数据库的返回列。

语法:int ada_afetch(int result_id, int rownumber, array result_array);

说明:将数据库返回的列数据放入数组变量中。参数result_id为数据库返回的ID值。参数rownumber为指定的取得列。参数result_array为取得列的数据数组,通常在前面加上“&”符号。

★ ada_autocommit

作用:开关自动更新功能。

语法:int ada_autocommit(int connection_id, int [OnOff]);

说明:本函数用来打开或关闭自动更新功能。参数connection_id为数据库链接的ID值。参数OnOff的默认值为on,表示打开自动更新功能,若欲关闭则设为off。

★ ada_close

作用:关闭Adabas D链接。

语法:void ada_close(int connection_id);

说明:本函数用来关闭与Adabas D数据库之间的链接。参数connection_id为数据库链接代号ID值。

★ ada_commit

作用:改变Adabas D数据库。

语法:int ada_commit(int connection_id);

说明:若设置ada_autocommit()为自动更新数据库时,则不需要使用本函数。

★ ada_connect

作用:链接至Adabas D数据库。

语法:int ada_connect(string dsn, string user, string password);

说明:返回值为链接的代号ID值。参数dsn为数据源名称。参数user及password分别为链接的帐号及密码。

★ ada_exec

作用:执行SQL指令。

语法:int ada_exec(int connection_id, string query);

说明:参数connection_id为Adabas D链接代号ID值。参数query为欲执行的指令。返回值为Result ID值。

★ ada_fetchrow

作用:取得数据库返回的一列。

语法:int ada_fetchrow(int result_id, int [row_number]);

说明:参数result_id为Adabas D返回ID值。参数rownumber为指定的列,可以省略。

★ ada_fieldname

作用:取得字段名称。

语法:string ada_fieldname(int result_id, int field_number);

说明:参数result_id为Adabas D数据库返回ID值。参数field_number为指定的字段。

★ ada_fieldtype

作用:取得字段类型。

语法:string ada_fieldtype(int result_id, int field_number);

★ ada_freeresult

作用:释出返回数据所使用的内存。

语法:int ada_freeresult(int result_id);

说明:参数result_id为Adabas D返回的ID值。

★ ada_numfields

作用:获取字段数目。

语法:int ada_numfields(int result_id);

说明:参数result_id为Adabas D返回的ID值。若发生错误则返回-1。

★ ada_numrows

作用:取得查询结果返回的记录数。

语法:int ada_numrows(int result_id);

说明:参数result_id为Adabas D返回的ID值。若出现错误则返回-1。

★ ada_result

作用:取得返回结果。

语法:string ada_result(int result_id, mixed field);

说明:参数result_id为Adabas D返回的ID值。参数field可以是数字类型,表示指定的字段序号;亦可以是字符串类型,为指定的字段名称。

★ ada_resultall

作用:返回HTML表格形式的查询结果。

语法:int ada_resultall(int result_id, string [format]);

说明:参数result_id为Adabas D返回的ID值。参数format为表格的特殊配置值,可以省略。

★ ada_rollback

作用:撤消当前的查询操作。

语法:int ada_rollback(int connection_id);

说明:若操作成功返回true,否则返回false。
 


Statement of this Website
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

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 ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

To work on file upload we are going to use the form helper. Here, is an example for file upload.

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

In this chapter, we are going to learn the following topics related to routing ?

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

Validator can be created by adding the following two lines in the controller.

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

See all articles