yii ar 增删改查 操作测试记录
亲们, 我是yii小白 不要笑话我奥。今天白天写一个管理模块涉及到 yii ar 下的 curd 操作,做 update 操作时纠结了好久,今天晚上花点时间学习, 下面写下我的测试记录
代码如下:
<span style="color: #008080;"> 1</span> <span style="color: #0000ff;">public</span> <span style="color: #0000ff;">function</span><span style="color: #000000;"> actionIndex(){</span><span style="color: #008080;"> 2</span> <span style="color: #008080;"> 3</span> <span style="color: #008000;">//</span><span style="color: #008000;"> 写入数据</span><span style="color: #008080;"> 4</span> <span style="color: #008000;"> //yii ar curd 之 insert</span><span style="color: #008080;"> 5</span> <span style="color: #800080;">$_POST</span>['Users']['sex'] = 2<span style="color: #000000;">;</span><span style="color: #008080;"> 6</span> <span style="color: #800080;">$_POST</span>['Users']['username'] = 'xiaohua'<span style="color: #000000;">;</span><span style="color: #008080;"> 7</span> <span style="color: #800080;">$model</span> = <span style="color: #0000ff;">new</span><span style="color: #000000;"> Users;</span><span style="color: #008080;"> 8</span> <span style="color: #800080;">$model</span>->attributes = <span style="color: #800080;">$_POST</span>['Users'<span style="color: #000000;">];</span><span style="color: #008080;"> 9</span> <span style="color: #800080;">$rt</span> = <span style="color: #800080;">$model</span>-><span style="color: #000000;">save();</span><span style="color: #008080;">10</span> <span style="color: #008080;">11</span> <span style="color: #0000ff;">if</span>(<span style="color: #800080;">$rt</span><span style="color: #000000;">) {</span><span style="color: #008080;">12</span> Yii::app()->user->setFlash('success','写入成功了'<span style="color: #000000;">);</span><span style="color: #008080;">13</span> <span style="color: #800080;">$this</span>->redirect(<span style="color: #0000ff;">array</span>('index/test'<span style="color: #000000;">));</span><span style="color: #008080;">14</span> } <span style="color: #0000ff;">else</span><span style="color: #000000;"> {</span><span style="color: #008080;">15</span> Yii::app()->user->setFlash('error','失败了'<span style="color: #000000;">);</span><span style="color: #008080;">16</span> <span style="color: #800080;">$this</span>->redirect(<span style="color: #0000ff;">array</span>('index/test'<span style="color: #000000;">));</span><span style="color: #008080;">17</span> <span style="color: #000000;"> }</span><span style="color: #008080;">18</span> <span style="color: #008080;">19</span> <span style="color: #008080;">20</span> <span style="color: #008000;">//</span><span style="color: #008000;"> 查询数据</span><span style="color: #008080;">21</span> <span style="color: #008000;"> //get one data by field</span><span style="color: #008080;">22</span> <span style="color: #800080;">$hh</span> = Users::model()-><span style="color: #000000;">find(</span><span style="color: #008080;">23</span> 'username=:name',<span style="color: #0000ff;">array</span>(':name'=>'fzb'<span style="color: #000000;">)</span><span style="color: #008080;">24</span> <span style="color: #000000;"> );</span><span style="color: #008080;">25</span> <span style="color: #008080;">print_r</span>(<span style="color: #800080;">$hh</span>['username'<span style="color: #000000;">]);</span><span style="color: #008080;">26</span> <span style="color: #008080;">27</span> <span style="color: #008000;">//</span><span style="color: #008000;">get one data by id</span><span style="color: #008080;">28</span> <span style="color: #800080;">$hh</span> = Users::model()->findByPk(1<span style="color: #000000;">);</span><span style="color: #008080;">29</span> <span style="color: #008080;">print_r</span>(<span style="color: #800080;">$hh</span>['username'<span style="color: #000000;">]);</span><span style="color: #008080;">30</span> <span style="color: #008080;">31</span> <span style="color: #008000;">//</span><span style="color: #008000;">get all</span><span style="color: #008080;">32</span> <span style="color: #800080;">$hh</span> = Users::model()-><span style="color: #000000;">findAll();</span><span style="color: #008080;">33</span> <span style="color: #008080;">print_r</span>(<span style="color: #800080;">$hh</span><span style="color: #000000;">);</span><span style="color: #008080;">34</span> <span style="color: #008080;">35</span> <span style="color: #008000;">//</span><span style="color: #008000;"> 修改数据 </span><span style="color: #008080;">36</span> <span style="color: #008000;"> // update one</span><span style="color: #008080;">37</span> <span style="color: #800080;">$model</span> = <span style="color: #0000ff;">new</span><span style="color: #000000;"> Users;</span><span style="color: #008080;">38</span> <span style="color: #800080;">$count</span> = <span style="color: #800080;">$model</span>->updateByPk(5,<span style="color: #0000ff;">array</span>('username'=>'admin','sex'=>1<span style="color: #000000;">));</span><span style="color: #008080;">39</span> <span style="color: #0000ff;">if</span>(<span style="color: #800080;">$count</span><span style="color: #000000;">) {</span><span style="color: #008080;">40</span> Yii::app()->user->setFlash('success','修改成功了'<span style="color: #000000;">);</span><span style="color: #008080;">41</span> <span style="color: #800080;">$this</span>->redirect(<span style="color: #0000ff;">array</span>('index/test'<span style="color: #000000;">));</span><span style="color: #008080;">42</span> } <span style="color: #0000ff;">else</span><span style="color: #000000;"> {</span><span style="color: #008080;">43</span> Yii::app()->user->setFlash('error','修改失败了'<span style="color: #000000;">);</span><span style="color: #008080;">44</span> <span style="color: #800080;">$this</span>->redirect(<span style="color: #0000ff;">array</span>('index/test'<span style="color: #000000;">));</span><span style="color: #008080;">45</span> <span style="color: #000000;"> }</span><span style="color: #008080;">46</span> <span style="color: #008080;">47</span> <span style="color: #008080;">48</span> }
希望大婶们嘴下留情
我还是小白呢
有不足之处希望大家指出,谢谢!

In PHP, you can use session_status() or session_id() to check whether the session has started. 1) Use the session_status() function. If PHP_SESSION_ACTIVE is returned, the session has been started. 2) Use the session_id() function, if a non-empty string is returned, the session has been started. Both methods can effectively check the session state, and choosing which method to use depends on the PHP version and personal preferences.

Sessionsarevitalinwebapplications,especiallyfore-commerceplatforms.Theymaintainuserdataacrossrequests,crucialforshoppingcarts,authentication,andpersonalization.InFlask,sessionscanbeimplementedusingsimplecodetomanageuserloginsanddatapersistence.

Managing concurrent session access in PHP can be done by the following methods: 1. Use the database to store session data, 2. Use Redis or Memcached, 3. Implement a session locking strategy. These methods help ensure data consistency and improve concurrency performance.

PHPsessionshaveseverallimitations:1)Storageconstraintscanleadtoperformanceissues;2)Securityvulnerabilitieslikesessionfixationattacksexist;3)Scalabilityischallengingduetoserver-specificstorage;4)Sessionexpirationmanagementcanbeproblematic;5)Datapersis

Load balancing affects session management, but can be resolved with session replication, session stickiness, and centralized session storage. 1. Session Replication Copy session data between servers. 2. Session stickiness directs user requests to the same server. 3. Centralized session storage uses independent servers such as Redis to store session data to ensure data sharing.

Sessionlockingisatechniqueusedtoensureauser'ssessionremainsexclusivetooneuseratatime.Itiscrucialforpreventingdatacorruptionandsecuritybreachesinmulti-userapplications.Sessionlockingisimplementedusingserver-sidelockingmechanisms,suchasReentrantLockinJ

Alternatives to PHP sessions include Cookies, Token-based Authentication, Database-based Sessions, and Redis/Memcached. 1.Cookies manage sessions by storing data on the client, which is simple but low in security. 2.Token-based Authentication uses tokens to verify users, which is highly secure but requires additional logic. 3.Database-basedSessions stores data in the database, which has good scalability but may affect performance. 4. Redis/Memcached uses distributed cache to improve performance and scalability, but requires additional matching

Sessionhijacking refers to an attacker impersonating a user by obtaining the user's sessionID. Prevention methods include: 1) encrypting communication using HTTPS; 2) verifying the source of the sessionID; 3) using a secure sessionID generation algorithm; 4) regularly updating the sessionID.


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

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Atom editor mac version download
The most popular open source editor

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

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

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.

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