


Yii learning (5)--Active Record association, yii--active
Official website original text: http://www.yiiframework.com/doc/guide/1.1 /zh_cn/database.arr
The second half of the official website is in English, and the Chinese content is less than the English content. I will put it here first and translate it later when I have time.
We have seen how to use Active Record (AR) to get data from a single data table. In this section, we explain how to use AR to connect multiple related data tables and retrieve the joined data set.
In order to use relational AR, we recommend defining primary key-foreign key constraints in the tables that need to be related. These constraints can help ensure the consistency and integrity of related data.
For simplicity, we demonstrate the examples in this section using the data structure in an Entity-Relationship (ER) diagram as shown below.
Information: Support for foreign key constraints varies between DBMSs. SQLite
1. Declaration of relationship
Before we use AR to perform related queries, we need to let AR know how one AR class is related to another.
The relationship between two AR classes is directly related through the relationship between the data tables represented by the AR classes. From a database perspective, there are three types of relationships between tables A and B: one-to-many (such as tbl_user
and tbl_post
), one-to-one (such as tbl_user
and tbl_profile
) and many-to-many (such as tbl_category
and tbl_post
). In AR, there are four types of relationships:
-
BELONGS_TO
(belongs to): If the relationship between tables A and B is one-to-many, then table B belongs to table A (for example,Post
belongs toUser
); -
HAS_MANY
(there are multiple): If the relationship between tables A and B is one-to-many, then A has multiple B (for example,User
has multiplePost
); -
HAS_ONE
(has one): This is a special case ofHAS_MANY
, A has at most one B (for example,User
has at most oneProfile
); -
MANY_MANY
: This corresponds to the many-to-many relationship in the database. Since most DBMS do not directly support many-to-many relationships, a relationship table is required to split the many-to-many relationship into a one-to-many relationship. In our example data structure,tbl_post_category
is used for this purpose. In AR terms, we can interpretMANY_MANY
as a combination ofBELONGS_TO
andHAS_MANY
. For example,Post
belongs to many (belongs to many)Category
,Category
has multiple (has many)Post
.
To define relationships in AR, you need to override the relationships() method in CActiveRecord. This method returns an array of relationship configurations. Each array element represents a single relationship in the following format.
'VarName'=><span>array</span>('RelationType', 'ClassName', 'ForeignKey', ...additional options)
where VarName
is the name of the relationship; RelationType
specifies the relationship type, which can be one of the following four constants: self::BELONGS_TO
,self::HAS_ONE
, self::HAS_MANY
and self::MANY_MANY
; ClassName
is this AR The name of the AR class to which the class is associated; ForeignKey
specifies the foreign key (one or more) used in the relationship. Additional options can be specified at the end of each relationship (more on this later).
The following code demonstrates how to define the relationship between User
and Post
classes:
<span>class</span> Post <span>extends</span><span> CActiveRecord { </span>...... <span>public</span> <span>function</span><span> relations() { </span><span>return</span> <span>array</span><span>( </span>'author'=><span>array</span>(self::BELONGS_TO, 'User', 'author_id'), 'categories'=><span>array</span>(self::MANY_MANY, 'Category', 'tbl_post_category(post_id, category_id)'),<span> ); } } </span><span>class</span> User <span>extends</span><span> CActiveRecord { </span>...... <span>public</span> <span>function</span><span> relations() { </span><span>return</span> <span>array</span><span>( </span>'posts'=><span>array</span>(self::HAS_MANY, 'Post', 'author_id'), 'profile'=><span>array</span>(self::HAS_ONE, 'Profile', 'owner_id'),<span> ); } }</span>
Information: Foreign keys may be compound, containing two or more columns. In this case, we should link these foreign key names, separated by spaces or commas. For the MANY_MANY
relationship type, the name of the associated table must also be specified in the foreign key. For example, the Post
relationship in categories
is specified by the foreign key tbl_post_category(post_id, category_id)
.
Relationship definitions in an AR class implicitly add an attribute to the class for each relationship. After a correlation query is executed, the corresponding properties will be populated with the associated AR instance. For example, if $author
represents a User
AR instance, we can use $author->posts
to access its associated Post
instance.
2. 执行关联查询
执行关联查询最简单的方法是读取一个 AR 实例中的关联属性。如果此属性以前没有被访问过,则一个关联查询将被初始化,它将两个表关联并使用当前 AR 实例的主键过滤。 查询结果将以所关联 AR 类的实例的方式保存到属性中。这就是传说中的 懒惰式加载(lazy loading,也可译为 迟加载) 方式,例如,关联查询只在关联的对象首次被访问时执行。 下面的例子演示了怎样使用这种方式:
<span>//</span><span> 获取 ID 为 10 的帖子</span> <span>$post</span>=Post::model()->findByPk(10<span>); </span><span>//</span><span> 获取帖子的作者(author): 此处将执行一个关联查询。</span> <span>$author</span>=<span>$post</span>->author;
信息: 如果关系中没有相关的实例,则相应的属性将为 null 或一个空数组。 BELONGS_TO
和 HAS_ONE
关系的结果是 null, HAS_MANY
和 MANY_MANY
的结果是一个空数组。 注意, HAS_MANY
和MANY_MANY
关系返回对象数组,你需要在访问任何属性之前先遍历这些结果。 否则,你可能会收到 "Trying to get property of non-object(尝试访问非对象的属性)" 错误。
懒惰式加载用起来很方便,但在某些情况下并不高效。如果我们想获取 N
个帖子的作者,使用这种懒惰式加载将会导致执行 N
个关联查询。 这种情况下,我们应该改为使用 渴求式加载(eager loading)方式。
渴求式加载方式会在获取主 AR 实例的同时获取关联的 AR 实例。 这是通过在使用 AR 中的 find 或 findAll 方法时配合使用 with 方法完成的。例如:
<span>$posts</span>=Post::model()->with('author')->findAll();
上述代码将返回一个 Post
实例的数组。与懒惰式加载方式不同,在我们访问每个 Post
实例中的 author
属性之前,它就已经被关联的 User
实例填充了。 渴求式加载通过 一个 关联查询返回所有帖子及其作者,而不是对每个帖子执行一次关联查询。
我们可以在 with() 方法中指定多个关系名字,渴求式加载将一次性全部取回他们。例如,如下代码会将帖子连同其作者和分类一并取回。
<span>$posts</span>=Post::model()->with('author','categories')->findAll();
我们也可以实现嵌套的渴求式加载。像下面这样, 我们传递一个分等级的关系名表达式到 with() 方法,而不是一个关系名列表:
<span>$posts</span>=Post::model()-><span>with( </span>'author.profile', 'author.posts', 'categories')->findAll();
上述示例将取回所有帖子及其作者和所属分类。它还同时取回每个作者的简介(author.profile)和帖子(author.posts)。
从版本 1.1.0 开始,渴求式加载也可以通过指定 CDbCriteria::with 的属性执行,就像下面这样:
<span>$criteria</span>=<span>new</span><span> CDbCriteria; </span><span>$criteria</span>->with=<span>array</span><span>( </span>'author.profile', 'author.posts', 'categories',<span> ); </span><span>$posts</span>=Post::model()->findAll(<span>$criteria</span>);
或者
<span>$posts</span>=Post::model()->findAll(<span>array</span><span>( </span>'with'=><span>array</span><span>( </span>'author.profile', 'author.posts', 'categories',<span> ) );</span>
3. 关系型查询选项
我们提到在关系声明时可以指定附加的选项。这些 名-值 对形式的选项用于自定义关系型查询。概括如下:
-
select
: 关联的 AR 类中要选择(select)的列的列表。 默认为 '*',即选择所有列。此选项中的列名应该是已经消除歧义的。 -
condition
: 即WHERE
条件。默认为空。此选项中的列名应该是已经消除歧义的。 -
params
: 要绑定到所生成的 SQL 语句的参数。应该以 名-值 对数组的形式赋值。此选项从 1.0.3 版起有效。 -
on
: 即ON
语句。此处指定的条件将会通过AND
操作符附加到 join 条件中。此选项中的列名应该是已经消除歧义的。 此选项不会应用到MANY_MANY
关系中。此选项从 1.0.2 版起有效。 -
order
: 即ORDER BY
语句。默认为空。 此选项中的列名应该是已经消除歧义的。 -
with
: a list of child related objects that should be loaded together with this object. Be aware that using this option inappropriately may form an infinite relation loop. -
joinType
: type of join for this relationship. It defaults toLEFT OUTER JOIN
. -
alias
: the alias for the table associated with this relationship. It defaults to null, meaning the table alias is the same as the relation name. -
together
: whether the table associated with this relationship should be forced to join together with the primary table and other tables. This option is only meaningful forHAS_MANY
andMANY_MANY
relations. If this option is set false, the table associated with theHAS_MANY
orMANY_MANY
relation will be joined with the primary table in a separate SQL query, which may improve the overall query performance since less duplicated data is returned. If this option is set true, the associated table will always be joined with the primary table in a single SQL query, even if the primary table is paginated. If this option is not set, the associated table will be joined with the primary table in a single SQL query only when the primary table is not paginated. For more details, see the section "Relational Query Performance". -
join
: the extraJOIN
clause. It defaults to empty. This option has been available since version 1.1.3. -
group
: theGROUP BY
clause. It defaults to empty. Column names referenced in this option should be disambiguated. -
having
: theHAVING
clause. It defaults to empty. Column names referenced in this option should be disambiguated. -
index
: the name of the column whose values should be used as keys of the array that stores related objects. Without setting this option, an related object array would use zero-based integer index. This option can only be set forHAS_MANY
andMANY_MANY
relations. -
scopes
: scopes to apply. In case of a single scope can be used like'scopes'=>'scopeName'
, in case of multiple scopes can be used like'scopes'=>array('scopeName1','scopeName2')
. This option has been available since version 1.1.9.
In addition, the following options are available for certain relationships during lazy loading:
-
limit
: limit of the rows to be selected. This option does NOT apply toBELONGS_TO
relation. -
offset
: offset of the rows to be selected. This option does NOT apply toBELONGS_TO
relation. -
through
: name of the model's relation that will be used as a bridge when getting related data. This option has been available since version 1.1.7 where it can be used forHAS_ONE
andHAS_MANY
. Since 1.1.14 it can be used forBELONGS_TO
as well.
Below we modify the posts
relationship declaration in the User
by including some of the above options:
<span>class</span> User <span>extends</span><span> CActiveRecord { </span><span>public</span> <span>function</span><span> relations() { </span><span>return</span> <span>array</span><span>( </span>'posts'=><span>array</span>(self::HAS_MANY, 'Post', 'author_id', 'order'=>'posts.create_time DESC', 'with'=>'categories'), 'profile'=><span>array</span>(self::HAS_ONE, 'Profile', 'owner_id'),<span> ); } }</span>
Now if we access $author->posts
, we would obtain the author's posts sorted according to their creation time in descending order. Each post instance also has its categories loaded.
5. Disambiguating Column Names
When a column name appears in two or more tables being joined together, it needs to be disambiguated. This is done by prefixing the column name with its table's alias name.
In relational AR query, the alias name for the primary table is fixed as t
, while the alias name for a relational table is the same as the corresponding relation name by default. For example, in the following statement, the alias name for Post
and Comment
is t
and comments
, respectively:
<span>$posts</span>=Post::model()->with('comments')->findAll();
Now assume both Post
and Comment
have a column called create_time
indicating the creation time of a post or comment, and we would like to fetch posts together with their comments by ordering first the posts' creation time and then the comments' creation time. We need to disambiguate the create_time
column like the following:
<span>$posts</span>=Post::model()->with('comments')->findAll(<span>array</span><span>( </span>'order'=>'t.create_time, comments.create_time'<span> ));</span>
Tip: The default alias of a related table is the name of the relation. Please note that if you're using relation from within another relation the alias will be the former relation name only and will not be prefixed with the parent relation. For example, the alias for 'author.group' relation is 'group', not 'author.group'.
<span>$posts</span>=Post::model()->with('author', 'author.group')->findAll(<span>array</span><span>( </span>'order'=>'group.name, author.name, t.title'<span> ));</span>
You can avoid the collision of tables' aliases by specifying the alias property of the relation.
<span>$comments</span>=Comment::model()-><span>with( </span>'author', 'post', 'post.author'=><span>array</span>('alias'=>'p_author'))->findAll(<span>array</span><span>( </span>'order'=>'author.name, p_author.name, post.title'<span> ));</span>
6. Dynamic Relational Query Options
We can use dynamic relational query options in both with() and the with
option. The dynamic options will overwrite existing options as specified in the relations() method. For example, with the above User
model, if we want to use eager loading approach to bring back posts belonging to an author in ascending order (theorder
option in the relation specification is descending order), we can do the following:
User::model()->with(<span>array</span><span>( </span>'posts'=><span>array</span>('order'=>'posts.create_time ASC'), 'profile',<span> ))</span>->findAll();
Dynamic query options can also be used when using the lazy loading approach to perform relational query. To do so, we should call a method whose name is the same as the relation name and pass the dynamic query options as the method parameter. For example, the following code returns a user's posts whose status
is 1:
<span>$user</span>=User::model()->findByPk(1<span>); </span><span>$posts</span>=<span>$user</span>->posts(<span>array</span>('condition'=>'status=1'));
7. Relational Query Performance
As we described above, the eager loading approach is mainly used in the scenario when we need to access many related objects. It generates a big complex SQL statement by joining all needed tables. A big SQL statement is preferrable in many cases since it simplifies filtering based on a column in a related table. It may not be efficient in some cases, however.
Consider an example where we need to find the latest posts together with their comments. Assuming each post has 10 comments, using a single big SQL statement, we will bring back a lot of redundant post data since each post will be repeated for every comment it has. Now let's try another approach: we first query for the latest posts, and then query for their comments. In this new approach, we need to execute two SQL statements. The benefit is that there is no redundancy in the query results.
So which approach is more efficient? There is no absolute answer. Executing a single big SQL statement may be more efficient because it causes less overhead in DBMS for parsing and executing the SQL statements. On the other hand, using the single SQL statement, we end up with more redundant data and thus need more time to read and process them.
For this reason, Yii provides the together
query option so that we choose between the two approaches as needed. By default, Yii uses eager loading, i.e., generating a single SQL statement, except when LIMIT
is applied to the primary model. We can set the together
option in the relation declarations to be true to force a single SQL statement even when LIMIT
is used. Setting it to false will result in some of tables will be joined in separate SQL statements. For example, in order to use separate SQL statements to query for the latest posts with their comments, we can declare the comments
relation in Post
class as follows,
<span>public</span> <span>function</span><span> relations() { </span><span>return</span> <span>array</span><span>( </span>'comments' => <span>array</span>(self::HAS_MANY, 'Comment', 'post_id', 'together'=><span>false</span>),<span> ); }</span>
We can also dynamically set this option when we perform the eager loading:
<span>$posts</span> = Post::model()-><span>with( </span><span>array</span>('comments'=><span>array</span><span>( </span>'together'=><span>false</span><span> )) )</span>->findAll();
8. Statistical Query
Besides the relational query described above, Yii also supports the so-called statistical query (or aggregational query). It refers to retrieving the aggregational information about the related objects, such as the number of comments for each post, the average rating for each product, etc. Statistical query can only be performed for objects related in HAS_MANY
(e.g. a post has many comments) or MANY_MANY
(e.g. a post belongs to many categories and a category has many posts).
Performing statistical query is very similar to performing relation query as we described before. We first need to declare the statistical query in the relations() method of CActiveRecord like we do with relational query.
<span>class</span> Post <span>extends</span><span> CActiveRecord { </span><span>public</span> <span>function</span><span> relations() { </span><span>return</span> <span>array</span><span>( </span>'commentCount'=><span>array</span>(self::<span>STAT</span>, 'Comment', 'post_id'), 'categoryCount'=><span>array</span><span>( self</span>::<span>STAT</span>, 'Category', 'post_category(post_id, category_id)'<span> )</span>,<span> ); } }</span>
In the above, we declare two statistical queries: commentCount
calculates the number of comments belonging to a post, and categoryCount
calculates the number of categories that a post belongs to. Note that the relationship between Post
and Comment
is HAS_MANY
, while the relationship between Post
and Category
isMANY_MANY
(with the joining table post_category
). As we can see, the declaration is very similar to those relations we described in earlier subsections. The only difference is that the relation type is STAT
here.
With the above declaration, we can retrieve the number of comments for a post using the expression $post->commentCount
. When we access this property for the first time, a SQL statement will be executed implicitly to retrieve the corresponding result. As we already know, this is the so-called lazy loading approach. We can also use the eager loading approach if we need to determine the comment count for multiple posts:
<span>$posts</span>=Post::model()->with('commentCount', 'categoryCount')->findAll();
The above statement will execute three SQLs to bring back all posts together with their comment counts and category counts. Using the lazy loading approach, we would end up with 2*N+1
SQL queries if there are N
posts.
By default, a statistical query will calculate the COUNT
expression (and thus the comment count and category count in the above example). We can customize it by specifying additional options when we declare it inrelations(). The available options are summarized as below.
-
select
: the statistical expression. Defaults toCOUNT(*)
, meaning the count of child objects. -
defaultValue
: the value to be assigned to those records that do not receive a statistical query result. For example, if a post does not have any comments, itscommentCount
would receive this value. The default value for this option is 0. -
condition
: theWHERE
clause. It defaults to empty. -
params
: the parameters to be bound to the generated SQL statement. This should be given as an array of name-value pairs. -
order
: theORDER BY
clause. It defaults to empty. -
group
: theGROUP BY
clause. It defaults to empty. -
having
: theHAVING
clause. It defaults to empty.
9. Relational Query with Named Scopes
Relational query can also be performed in combination with named scopes. It comes in two forms. In the first form, named scopes are applied to the main model. In the second form, named scopes are applied to the related models.
The following code shows how to apply named scopes to the main model.
<span>$posts</span>=Post::model()->published()->recently()->with('comments')->findAll();
This is very similar to non-relational queries. The only difference is that we have the with()
call after the named-scope chain. This query would bring back recently published posts together with their comments.
And the following code shows how to apply named scopes to the related models.
<span>$posts</span>=Post::model()->with('comments:recently:approved')-><span>findAll(); </span><span>//</span><span> or since 1.1.7</span> <span>$posts</span>=Post::model()->with(<span>array</span><span>( </span>'comments'=><span>array</span><span>( </span>'scopes'=><span>array</span>('recently','approved'<span>) )</span>,<span> ))</span>-><span>findAll(); </span><span>//</span><span> or since 1.1.7</span> <span>$posts</span>=Post::model()->findAll(<span>array</span><span>( </span>'with'=><span>array</span><span>( </span>'comments'=><span>array</span><span>( </span>'scopes'=><span>array</span>('recently','approved'<span>) )</span>,<span> )</span>,<span> ));</span>
The above query will bring back all posts together with their approved comments. Note that comments
refers to the relation name, while recently
and approved
refer to two named scopes declared in the Comment
model class. The relation name and the named scopes should be separated by colons.
Occasionally you may need to retrieve a scoped relationship using a lazy-loading approach, instead of the normal eager loading method shown above. In that case, the following syntax will do what you need:
~~ [php] // note the repetition of the relationship name, which is necessary $approvedComments = $post->comments('comments:approved'); ~~
Named scopes can also be specified in the with
option of the relational rules declared inCActiveRecord::relations(). In the following example, if we access $user->posts
, it would bring back allapproved comments of the posts.
<span>class</span> User <span>extends</span><span> CActiveRecord { </span><span>public</span> <span>function</span><span> relations() { </span><span>return</span> <span>array</span><span>( </span>'posts'=><span>array</span>(self::HAS_MANY, 'Post', 'author_id', 'with'=>'comments:approved'),<span> ); } } </span><span>//</span><span> or since 1.1.7</span> <span>class</span> User <span>extends</span><span> CActiveRecord { </span><span>public</span> <span>function</span><span> relations() { </span><span>return</span> <span>array</span><span>( </span>'posts'=><span>array</span>(self::HAS_MANY, 'Post', 'author_id', 'with'=><span>array</span><span>( </span>'comments'=><span>array</span><span>( </span>'scopes'=>'approved'<span> )</span>,<span> )</span>,<span> )</span>,<span> ); } }</span>
Note: Before 1.1.7 named scopes applied to related models must be specified in CActiveRecord::scopes. As a result, they cannot be parameterized.
Since 1.1.7 it's possible to pass parameters for relational named scopes. For example, if you have scope named rated
in the Post
that accepts minimum rating of post, you can use it from User
the following way:
<span>$users</span>=User::model()->findAll(<span>array</span><span>( </span>'with'=><span>array</span><span>( </span>'posts'=><span>array</span><span>( </span>'scopes'=><span>array</span><span>( </span>'rated'=>5,<span> )</span>,<span> )</span>,<span> )</span>,<span> )); </span><span>class</span> Post <span>extends</span><span> CActiveRecord { </span>...... <span>public</span> <span>function</span> rated(<span>$rating</span><span>) { </span><span>$this</span>->getDbCriteria()->mergeWith(<span>array</span><span>( </span>'condition'=>'rating=:rating', 'params'=><span>array</span>(':rating'=><span>$rating</span>),<span> )); </span><span>return</span> <span>$this</span><span>; } </span>......<span> }</span>
10. Relational Query with through
When using through
, relation definition should look like the following:
'comments'=><span>array</span>(self::HAS_MANY,'Comment',<span>array</span>('key1'=>'key2'),'through'=>'posts'),
In the above array('key1'=>'key2')
:
-
key1
is a key defined in relation specified inthrough
(posts
is this case). -
key2
is a key defined in a model relation points to (Comment
in this case).
through
can be used with HAS_ONE
, BELONGS_TO
and HAS_MANY
relations.
HAS_MANY
through
HAS_MANY through ER
An example of HAS_MANY
with through
is getting users from a particular group when users are assigned to groups via roles.
A bit more complex example is getting all comments for all users of a particular group. In this case we have to use several relations with through
in a single model:
<span>class</span> Group <span>extends</span><span> CActiveRecord { </span>... <span>public</span> <span>function</span><span> relations() { </span><span>return</span> <span>array</span><span>( </span>'roles'=><span>array</span>(self::HAS_MANY,'Role','group_id'), 'users'=><span>array</span><span>( self</span>::HAS_MANY,'User',<span>array</span>('user_id'=>'id'),'through'=>'roles'<span> )</span>, 'comments'=><span>array</span><span>( self</span>::HAS_MANY,'Comment',<span>array</span>('id'=>'user_id'),'through'=>'users'<span> )</span>,<span> ); } }</span>
Usage examples
<span>//</span><span> get all groups with all corresponding users</span> <span>$groups</span>=Group::model()->with('users')-><span>findAll(); </span><span>//</span><span> get all groups with all corresponding users and roles</span> <span>$groups</span>=Group::model()->with('roles','users')-><span>findAll(); </span><span>//</span><span> get all users and roles where group ID is 1</span> <span>$group</span>=Group::model()->findByPk(1<span>); </span><span>$users</span>=<span>$group</span>-><span>users; </span><span>$roles</span>=<span>$group</span>-><span>roles; </span><span>//</span><span> get all comments where group ID is 1</span> <span>$group</span>=Group::model()->findByPk(1<span>); </span><span>$comments</span>=<span>$group</span>->comments;
HAS_ONE
through
HAS_ONE through ER
An example of using HAS_ONE
with through
is getting user address where user is bound to address using profile. All these entities (user, profile, and address) do have corresponding models:
<span>class</span> User <span>extends</span><span> CActiveRecord { </span>... <span>public</span> <span>function</span><span> relations() { </span><span>return</span> <span>array</span><span>( </span>'profile'=><span>array</span>(self::HAS_ONE,'Profile','user_id'), 'address'=><span>array</span><span>( self</span>::HAS_ONE,'Address',<span>array</span>('id'=>'profile_id'), 'through'=>'profile'<span> )</span>,<span> ); } }</span>
Usage examples
<span>//</span><span> get address of a user whose ID is 1</span> <span>$user</span>=User::model()->findByPk(1<span>); </span><span>$address</span>=<span>$user</span>->address;
through on self
through
can be used for a model bound to itself using a bridge model. In our case it's a user mentoring other users:
through self ER
That's how we can define relations for this case:
<span>class</span> User <span>extends</span><span> CActiveRecord { </span>... <span>public</span> <span>function</span><span> relations() { </span><span>return</span> <span>array</span><span>( </span>'mentorships'=><span>array</span><span>( self</span>::HAS_MANY,'Mentorship','teacher_id','joinType'=>'INNER JOIN'<span> )</span>, 'students'=><span>array</span><span>( self</span>::HAS_MANY,'User',<span>array</span>('student_id'=>'id'), 'through'=>'mentorships','joinType'=>'INNER JOIN'<span> )</span>,<span> ); } }</span>
Usage examples
<span>//</span><span> get all students taught by teacher whose ID is 1</span> <span>$teacher</span>=User::model()->findByPk(1<span>); </span><span>$students</span>=<span>$teacher</span>->students;
1. Yii
Yii is a component-based, high-performance PHP framework for developing large-scale Web applications. Yii is written in strict OOP and has complete library references and comprehensive tutorials. From MVC, DAO/ActiveRecord, widgets, caching, hierarchical RBAC, Web services, to principalization, I18N and L10N, Yii provides almost everything needed for today's Web 2.0 application development. And the price of this frame is not too high. In fact, Yii is one of the most efficient PHP frameworks.
2. CodeIgniter
CodeIgniter is an application development framework - a toolkit designed for people who build PHP websites. Its goal is to develop projects quickly: it provides a rich set of libraries to complete common tasks, as well as a simple interface and a well-organized structure to access these libraries. Developing with CodeIgniter can inject more creativity into your projects because it saves a lot of coding time.
3. CakePHP
CakePHP is a framework for rapid development of PHP, which uses some common design patterns such as ActiveRecord, Association Data Mapping, Front Controller and MVC. Its main goal is to provide a framework that enables PHP developers of any level to quickly develop web applications, and this rapid implementation does not sacrifice the flexibility of the project.
4. PHPDevShell
PHPDevShell is an open source (GNU/LGPL) rapid application development framework for developing pure PHP without Javascript. It has a complete GUI administrator backend interface. Its main goal is to develop management-based applications such as plug-ins, where speed, security, stability and flexibility are the top priorities. It's designed to have an easy learning curve, so PHP developers don't need to learn complex new terminology. The arrival of PHPDevShell meets developers' needs for a lightweight but fully functional GUI that can be configured without restrictions.
5. Akelos
Akelos PHP framework is a web application development platform based on the MVC design pattern. Based on good usage habits, you can use it to complete the following tasks:
◆Conveniently use Ajax to write views
◆Manage requests and responses through controllers
◆Manage internationalized applications
◆Use simple protocols to communicate with models and databases
Your Akelos application can run on most shared hosting providers because Akelos is server-friendly The only requirement is support for PHP. Therefore, the Akelos PHP framework is ideal for publishing stand-alone web applications because it does not require non-standard PHP configuration to run.
6. Symfony
Symfony is a web application framework for developing PHP5 projects.
The purpose of this framework is to speed up the development and maintenance of web applications and reduce repetitive coding work.
Symfony has low system requirements and can be easily installed on any setup: all you need is a Unix or Windows server with PHP5 installed on it. It is compatible with almost all databases. The price of Symfony is not high, much lower than the cost of a host.
For PHP developers, using Symfony is a natural thing, and the learning curve is only one day. Clean design and code readability will shorten development time. Developers can apply the principles of agile development (such as DRY, KISS or XP, etc.) and focus on the application logic level without spending a lot of time writing endless XML configuration files.
Symfony is designed to build complete enterprise-level applications. That is, you have control over the entire setup: from path structure to external libraries, almost everything can be customized. In order to comply with enterprise development regulations, Symfony also bundles some additional tools to facilitate project testing, debugging, and archiving.
7. Prado
The PRADO team is made up of some PRADO fanatics... The rest of the story>>
Let me give you a few keywords
1.MVC
2.Event-driven
3.ActiveRecord
4.Component-oriented
Don’t let these go, look carefully

随着云计算技术的不断发展,数据的备份已经成为了每个企业必须要做的事情。在这样的背景下,开发一款高可用的云备份系统尤为重要。而PHP框架Yii是一款功能强大的框架,可以帮助开发者快速构建高性能的Web应用程序。下面将介绍如何使用Yii框架开发一款高可用的云备份系统。设计数据库模型在Yii框架中,数据库模型是非常重要的一部分。因为数据备份系统需要用到很多的表和关

在当前信息时代,大数据、人工智能、云计算等技术已经成为了各大企业关注的热点。在这些技术中,显卡渲染技术作为一种高性能图形处理技术,受到了越来越多的关注。显卡渲染技术被广泛应用于游戏开发、影视特效、工程建模等领域。而对于开发者来说,选择一个适合自己项目的框架,是一个非常重要的决策。在当前的语言中,PHP是一种颇具活力的语言,一些优秀的PHP框架如Yii2、Ph

随着互联网的不断发展,Web应用程序开发的需求也越来越高。对于开发人员而言,开发应用程序需要一个稳定、高效、强大的框架,这样可以提高开发效率。Yii是一款领先的高性能PHP框架,它提供了丰富的特性和良好的性能。Yii3是Yii框架的下一代版本,它在Yii2的基础上进一步优化了性能和代码质量。在这篇文章中,我们将介绍如何使用Yii3框架来开发PHP应用程序。

Yii框架是一个开源的PHPWeb应用程序框架,提供了众多的工具和组件,简化了Web应用程序开发的流程,其中数据查询是其中一个重要的组件之一。在Yii框架中,我们可以使用类似SQL的语法来访问数据库,从而高效地查询和操作数据。Yii框架的查询构建器主要包括以下几种类型:ActiveRecord查询、QueryBuilder查询、命令查询和原始SQL查询

随着Web应用需求的不断增长,开发者们在选择开发框架方面也越来越有选择的余地。Symfony和Yii2是两个备受欢迎的PHP框架,它们都具有强大的功能和性能,但在面对需要开发大型Web应用时,哪个框架更适合呢?接下来我们将对Symphony和Yii2进行比较分析,以帮助你更好地进行选择。基本概述Symphony是一个由PHP编写的开源Web应用框架,它是建立

yii框架:本文为大家介绍了yii将对象转化为数组或直接输出为json格式的方法,具有一定的参考价值,希望能够帮助到大家。

如果您问“Yii是什么?”查看我之前的教程:Yii框架简介,其中回顾了Yii的优点,并概述了2014年10月发布的Yii2.0的新增功能。嗯>在这个使用Yii2编程系列中,我将指导读者使用Yii2PHP框架。在今天的教程中,我将与您分享如何利用Yii的控制台功能来运行cron作业。过去,我在cron作业中使用了wget—可通过Web访问的URL来运行我的后台任务。这引发了安全问题并存在一些性能问题。虽然我在我们的启动系列安全性专题中讨论了一些减轻风险的方法,但我曾希望过渡到控制台驱动的命令

随着互联网的快速发展,Web应用越来越成为人们生活中不可或缺的一部分。而表单是Web应用中不可或缺的元素之一,其用于收集用户数据,让Web应用能够更好地为用户服务。Yii框架是一个快速、高效、灵活的PHP框架,可以帮助开发人员更加快速地开发Web应用。Yii框架中的表单构建器(FormBuilder)可以让开发人员轻松地构建复杂的表单,让Web应用具有更好


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

Dreamweaver Mac version
Visual web development tools

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.
