手里有个项目 想查一些内置函数的api

WBOY
Release: 2016-06-06 20:19:07
Original
1145 people have browsed it

新手接触php 有一个项目;
里面有 fetch_all , fetch_one_array,update,insert,count这些内置函数,想查一下api,大概能看懂什么意思,但是想查一下api,

<code>`
$db = new Mysql();
$db -> fetch_all(sql);
$db -> fetch_one_array(sq);
$db -> update(‘tablename’,data,where);

$db -> insert(‘tablename’,data);
$db -> count(‘tablename’,where);
`</code>
Copy after login
Copy after login

回复内容:

新手接触php 有一个项目;
里面有 fetch_all , fetch_one_array,update,insert,count这些内置函数,想查一下api,大概能看懂什么意思,但是想查一下api,

<code>`
$db = new Mysql();
$db -> fetch_all(sql);
$db -> fetch_one_array(sq);
$db -> update(‘tablename’,data,where);

$db -> insert(‘tablename’,data);
$db -> count(‘tablename’,where);
`</code>
Copy after login
Copy after login

http://psysh.org/ doc命令。

你这个项目是用什么框架写的?

Related labels:
php
source:php.cn
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template