Home Backend Development PHP Tutorial fleaphp crud操作之findByField函数的使用方法_php技巧

fleaphp crud操作之findByField函数的使用方法_php技巧

May 17, 2016 am 09:20 AM
crud

findByField函数原型

复制代码 代码如下:

/**
* 返回具有指定字段值的第一条记录
*
* @param string $field
* @param mixed $value
* @param string $sort
* @param mixed $fields
*
* @return array
*/
function & findByField($field, $value, $sort = null, $fields = '*')
{
return $this->find(array($field => $value), $sort, $fields);
}

findByField函数参数说明
$field 提供查询的字段
$value 提供查询的值
$sort 排序方式
$fields 需要查询显示的字段名
fleaphp crud操作之findByField函数的用法示例
复制代码 代码如下:

$dirname = dirname(__FILE__);
define('APP_DIR', $dirname . '/APP');
define('NO_LEGACY_FLEAPHP', true);
require($dirname.'/FleaPHP/FLEA/FLEA.php');
//设置缓存目录
FLEA::setAppInf('internalCacheDir',$dirname.'/_Cache');
//链接数据库
$dsn = array(
'driver' => 'mysql',
'host' => 'localhost',
'login' => 'root',
'password' => '',
'database' => 'wordpress'
);
FLEA::setAppInf('dbDSN',$dsn);
//读取wp_posts的内容
FLEA::loadClass('FLEA_Db_TableDataGateway');
class Teble_Class extends FLEA_Db_TableDataGateway {
var $tableName = 'wp_posts';
var $primaryKey = 'ID';
}
$tableposts =& new Teble_Class();
$rowsets = $tableposts->findByField('ID',4,'post_date DESC',array('ID','post_title'));
dump($rowsets);
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)

Laravel development: How to use Laravel Nova for CRUD operations? Laravel development: How to use Laravel Nova for CRUD operations? Jun 14, 2023 am 11:40 AM

Laravel is one of the most popular PHP frameworks today, providing rich functionality and a convenient development experience. LaravelNova is an admin interface builder designed specifically for Laravel applications, helping you create and manage backend admin panels more easily. In this article, we will look at how to use LaravelNova for CRUD operations. What are CRUD operations? CRUD is the abbreviation for "Create, Read, Update and Delete". These four operations are useful for any application

Tips for using mixins to implement CRUD (add, delete, modify, check) operations in Vue Tips for using mixins to implement CRUD (add, delete, modify, check) operations in Vue Jun 25, 2023 pm 07:42 PM

Mixin in Vue is a very useful feature. It can encapsulate some reusable code in a mixin object, and then use mixin to introduce it in the components that need to use these codes. This method greatly improves the reusability and maintainability of the code, especially in some repeated CRUD (add, delete, modify) operations. This article will introduce how to use mixins to implement CRUD operations in Vue. First, we need to understand how to create a

How to develop a simple CRUD API using MongoDB How to develop a simple CRUD API using MongoDB Sep 19, 2023 pm 12:32 PM

How to use MongoDB to develop a simple CRUD API In modern web application development, CRUD (Create, Delete, Modify, Check) operations are one of the most common and important functions. In this article, we will introduce how to develop a simple CRUD API using MongoDB database and provide specific code examples. MongoDB is an open source NoSQL database that stores data in the form of documents. Unlike traditional relational databases, MongoDB does not have a predefined schema

How to use Vue and Axios to implement CRUD operations on data How to use Vue and Axios to implement CRUD operations on data Jul 17, 2023 pm 04:33 PM

How to use Vue and Axios to implement CRUD operations on data. In front-end development, it is often necessary to interact with the back-end server to perform CRUD operations on data. Vue is a popular JavaScript framework that helps us build interactive user interfaces. Axios is a Promise-based HTTP library that can help us easily communicate data with the server. By combining Vue and Axios, we can easily implement CRU of data

ThinkPHP6 code generator: quickly generate CRUD code ThinkPHP6 code generator: quickly generate CRUD code Aug 25, 2023 pm 10:24 PM

ThinkPHP6 code generator: quickly generate CRUD code Preface: During the development process, we often encounter the need to create CRUD (CRUD) functions. This repetitive work is time-consuming and error-prone. In order to improve development efficiency and reduce errors, we can use a powerful code generator to automatically generate CRUD code. This article will introduce a code generator based on the ThinkPHP6 framework to help developers quickly generate CRUD code. Overview: The tedious coding work can be solved by code

A deep dive into Java RESTful APIs: Mastering the essence of RESTful web services A deep dive into Java RESTful APIs: Mastering the essence of RESTful web services Mar 09, 2024 am 09:37 AM

Introduction: RESTfulapi (RepresentationalStateTransferAPI) has become an indispensable technology in modern WEB application development. It follows the principle of REST (Representational State Transfer) and provides a simple and efficient architecture for building scalable, maintainable and easy-to-integrate Web services. This article will delve into the world of JavaRESTfulAPI and help developers master the essence of building and consuming RESTfulWeb services. 1. RESTfulAPI basics RESTfulAPI is based on the following principles: Stateless: the server does not save client state, and each request is independent. Unified interface: through the Uniform Resource Identifier (URI)

How to use PHP to complete a CRUD-based data management system How to use PHP to complete a CRUD-based data management system Jun 25, 2023 am 10:49 AM

In modern network applications, data management is a crucial step. In order to conveniently manage large amounts of data, it is very common to use a management system based on CRUD (Create, Read, Update, Delete). As a widely used website development language, PHP can also provide a wealth of tools and architecture to support CRUD applications. This article will introduce how to use PHP to build a CRUD-based data management system. Designing the Database Structure Before we start writing PHP code, we

Using MyBatis-Plus for CRUD processing in Java API development Using MyBatis-Plus for CRUD processing in Java API development Jun 18, 2023 am 08:03 AM

As the scale of websites continues to expand, Java developers increasingly need to handle a large number of database operations. Faced with this situation, if you use traditional SQL statements for development, it is easy to have duplicate and redundant codes. If you use a framework for development, you can avoid these problems. Among them, MyBatis-Plus is a very popular framework that can be used for CRUD processing in Java API development. In this article, we will explain in detail how to use MyB

See all articles