search
HomeBackend DevelopmentPHP TutorialZF 表模型创建问题 在线等

求助啊  在ZF框架中 建立表模型 可是表的主键有两个(是组合键) 在表模型中改怎么写啊 ???????

class IndentdetailModel extends Zend_Db_Table{	protected $_name="indentdetail";	protected $_primary="indentnumber";	

表的构造:

这样的表对应的表模型该怎么创建啊 主要是protected $_primary=??这里不懂


回复讨论(解决方案)

这我也不知道 也许可以用数组(完全是个人猜测)

但我那时候干过这样的事情

我的表本身没有主键
但我在创建表模型的时候随意指定了表中的某个字段为主键  程序上是没有报错的
而且调用一些table的方法  比如依据主键查找 好像是find()方法吧  也可以用 也没出什么问题


但我觉得这样做确实还是不科学
也许是我没有碰到会出错的情况

还是等楼下给出解决方法吧..

哦 我查了下
library\Zend\Db\Table\Abstract.php这个文件的源码

这应该是表模型的父类

里面我也找到了$primary的相关注释
注释是这么说的

     /**     * The primary key column or columns.     * A compound key should be declared as an array.     * You may declare a single-column primary key     * as a string.     *     * @var mixed     */    protected $_primary = null;


这个意思大概就是说
如果主键只有一个 就用字符串初始化
如果主键有多个 就用数组初始化

猜对了~

哦 我查了下
library\Zend\Db\Table\Abstract.php这个文件的源码

这应该是表模型的父类

里面我也找到了$primary的相关注释
注释是这么说的
PHP code

?
1
2
3
4
5
6
7
8
9
     /**
     * The primary key column or columns.
     * A compound key should be declared as an array.
     * You may declare a single-column primary key
     * as a string.
     *
     * @var mixed
     */
    protected $_primary = null;


这个意思大概就是说
如果主键只有一个 就用字符串初始化
如果主键有多个 就用数组初始化

猜对了~

我看过了 ,但是你试过了没,我用数组了 ,但是出错,服务器错,什么都的不到,我用的是
protected $_primary =array('组合键1','组合键2');

是不是方法错了,有没有人用过的 ,对的话给个建议

今天抽空试了一下你说的问题 得到了一些结论 在这分享给你

首先$_primary是表模型的成员变量,在构建表模型的时候肯定是要重构的,这一点没有问题.
这个变量可以是一个字符串,也可以是一个数组.到底是字符串还是数组,这取决于你的数据表是有一个主键还是有多个主键.
当数据表中只有一个主键时,就用字符串初始化$_primary.
当数据表中有多个字段作为主键时,就要用数组来初始化$_primary了,并且数组长度与主键个数是相同的.

我还是使用了find()方法做的测试.

由于$_primary有可能是字符串,也有可能是数组,对应的,在使用find方法时,参数列表也就有了多种形式.

我先说$_primary变量为字符串的情况,也就是数据表只有一个主键的情况.
在这种情况下,主键只有一个,使用find()方法可以查找数据表中的一行或多行.
当要查询一行的时候,就直接将字符串传入find函数.
当要查询多行的时候,你需要将待查询的字段写入一个数组,再将数组传入find()方法即可.

这两种情况都很好理解.下面说$_primary变量为数组的情况,也就是数据表有多个主键的情况.

在这种情况下,主键有多个,使用find()方法同样可以查找数据表中的一行或多行.
当要查询一行的时候,你需要向find()函数传入主键个数个参数.举个例子,比如你有两个主键,你就需要将这两个主键的待查询的值作为参数传给find()方法,并且顺序要和$_primary初始化时的数组顺序保持一致.
当要查询多行的时候,你需要向find()函数传入主键个数个数组.举个例子,比如你有两个主键,你就需要创造两个数组作为参数传给find(),第一个数组存第一个主键待查询的所有取值,第二个数组就存第二个主键待查询的所有取值.需要强调的是,这两个数组的长度肯定是相同的,也就是你试图查询到的行数(之所以说"试图",是因为有可能不存在),而数组的个数就是主键的个数.

为了方便你理解,我把我做的例子给你看看

我的student表结构:
其中sid和sname都设置为了主键,所以会出现两个'001'.

+-----+--------+-----+| sid | sname  | sex |+-----+--------+-----+| 001 | parker | 男  || 001 | 李雷   | 男  || 002 | 韩梅梅 | 女  || 003 | jim    | 男  |+-----+--------+-----+

protected $_primary = array('sid', 'sname');

在这种情况下如果要查询第一行,find函数这么写
$res = $studentModel->find('001', 'parker')->toArray();

如果要查询多行,比如第二第三行,find函数这么写
$res = $studentModel->find(array('001', '002'), array('李雷', '韩梅梅'));

第一个数组的'001'和第二个数组的'李雷'对应;
第一个数组的'002'和第二个数组的'韩梅梅'对应;
但是第一个数组对应的永远是'sid'字段
第二个数组对应的永远是'sname'字段
之所以这么对应 是因为$_primary的初始化时决定的

综上所述
$_primary的初始化有两种形式
要不然是字符串,要不然是数组.

对应的,find()方法的参数有四种形式
一个字符串(一个主键,查一行);
一个数组(一个主键,查多行);
多个字符串(多个主键,查一行);
多个数组(多个主键,查多行)

而且我推测,即使是其它一些要涉及到有关主键的数据库操作方法,想必也是这样的传参数的思路

最后我确实查询到了想要的结果.
不知道我这些结论能不能解决你的问题.

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
Working with Flash Session Data in LaravelWorking with Flash Session Data in LaravelMar 12, 2025 pm 05:08 PM

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

Build a React App With a Laravel Back End: Part 2, ReactBuild a React App With a Laravel Back End: Part 2, ReactMar 04, 2025 am 09:33 AM

This is the second and final part of the series on building a React application with a Laravel back-end. In the first part of the series, we created a RESTful API using Laravel for a basic product-listing application. In this tutorial, we will be dev

cURL in PHP: How to Use the PHP cURL Extension in REST APIscURL in PHP: How to Use the PHP cURL Extension in REST APIsMar 14, 2025 am 11:42 AM

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Simplified HTTP Response Mocking in Laravel TestsSimplified HTTP Response Mocking in Laravel TestsMar 12, 2025 pm 05:09 PM

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

12 Best PHP Chat Scripts on CodeCanyon12 Best PHP Chat Scripts on CodeCanyonMar 13, 2025 pm 12:08 PM

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

Notifications in LaravelNotifications in LaravelMar 04, 2025 am 09:22 AM

In this article, we're going to explore the notification system in the Laravel web framework. The notification system in Laravel allows you to send notifications to users over different channels. Today, we'll discuss how you can send notifications ov

Explain the concept of late static binding in PHP.Explain the concept of late static binding in PHP.Mar 21, 2025 pm 01:33 PM

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

PHP Logging: Best Practices for PHP Log AnalysisPHP Logging: Best Practices for PHP Log AnalysisMar 10, 2025 pm 02:32 PM

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

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

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool