fleaphp crud操作之findByField函数的使用方法_php技巧
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);

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

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

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

Hot Topics

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

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 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. 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 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

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)

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

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
