


Analyze thinkphp's left and right value infinite classification_PHP tutorial
In the past, the infinite classification of father and son has been used. This classification structure is clear and easy to use. However, if the number of categories is large, the query performance will be poor. For example, when making a navigation menu, I want to query the entire classification tree (ancestors) based on a certain classification.
The performance consumption is very large, either recursive or multiple queries. Therefore, for situations where the amount of classified data is large, I recommend using left and right values to reduce query trouble.
_id
/**
+------------------------------------------------- ------------
* Constructor
* @access public
* @return void
+------------- -----------------------------------------------
*/
public function __construct($left,$right,$id){
parent::__construct();
$this->_left = $left;
$this->_right = $right;
$this->_id = $id;
}
/**
+------------------------------------------------- ------------
* Get all the values of the node based on node$this->_id
* @access public
* @param $nodeId
* @ return array
+-------------------------------------------------- ---------------
*/
public function getNodeById($nodeId)
{
if($nodeId>0)
{
return $this->getById($nodeId);
}
else
{
throw_exception('未知$this->_id');
return false;
}
}
/**
+------------------------------------------------- ------------
* Get the parent node, including direct parent class (type=1), all parent classes: type=0
* @access public
* @param $nodeId int node $this->_id
----------------------------------
*/
public function getParentNode($nodeId,$type = 0)
{
if($nodeId == 0) throw_exception('未知$this->_id');;
$currentNode = $this->getNodeById($nodeId);
if($currentNode)
{
$condition = " ".$this->_left.'_left].' and '.$this->_right.' >'.$currentNode[$this->_right]." ";
if($type ==1) //直属父类
{
return $this->where($condition)->order($this->_left." DESC")->limit(1)->find();
// $sql = "SELECT * FROM ".TABLE_NAME." WHERE {$condition} ORDER BY ".$this->_left." DESC LIMIT 1";
// return mysql_query($sql) or die(mysql_error());
}
else if($type ==0)
{
return $this->where($condition)->findAll();
// $sql = "SELECT * FROM ".TABLE_NAME." WHERE {$condition} ";
// return mysql_query($sql) or die(mysql_error());
}
}
else
{
return false;
}
}
/**
+------------------------------------------------- ------------
* The total number of descendant nodes under the current node. The total number of descendants = (rvalue of the current node - lvalue of the current node - 1)/2
* @access public
* @param $node_id int Node $this->_id
* @return $amount int The total number of descendants of this node *
+-------------- -----------------------------------------------
*/
public function getChildCount($nodeId)
{
$currentNode = $this->getNodeById($nodeId);
if(!empty($currentNode))
{
return (int)($currentNode[$this->_right]-$currentNode[$this->_left] -1)/2;
}
}
/**
+------------------------------------------------- ------------
* Get all child nodes under the current node. When the right node of subclass A = the left node of subclass B - 1, then A and B belong to the same level
* @access public
* @param $curentId
* @param $type int 0: current node All subcategories under the current node, 1 is the next subcategory of the current node
* @return bool
+------------------------- ----------------------------------
*/
public function getChild($nodeId,$type=0)
{
$currentNode = $this->getNodeById($nodeId);
if($currentNode[$this->_left]-$currentNode[$this->_right] ==1)
{
return false; //当 该节点左值 - 右值=1 时,其下没有子节点。
}
{
$ condition = $ this- & gt; _let. '& Gt;'. $ CanNotnode [$ this- & gt; _let]. _right .'_right];
$child = $this->where($condition)->findAll();
" $ subarr = array (); // The first -level subclass
Foreach ($ Child as $ k = & gt; $ sub) {
// Sub -class left node = parent -class left node +1, then the child The class is the first subclass
if($sub[$this->_left]==$currentNode[$this->_left]+1)
= $ sub[$k][$this->_right]; //The right node of the current node
); // Subclasses are pushed onto the stack $firstSub[$this->_right]; //first The child nodes are comparison marks
$childCount = count($child);//The number of remaining child nodes
for($i=0;$i 🎜> $rightVal = $sub2[$this->_right]; // Use the right node of the current node in the loop as the comparison value key]);
return $subArr; 🎜> {
$sql = "select parent.* from __TABLE__ as node,__TABLE__ as parent where node.{$this->_left} between parent.{$this->_left}
AND parent.{$this->_right} AND node.{$this->_id} = {$nodeId} order by parent.{$this->_left}";
// echo $sql; sql);
}
/**
+---------------------------------- -----------------------
* Add a child node, divided into 3 types: 0: add the last child node under the current node; 1 : Append the first child node under the current node;
2: Append after a child node under the current node
Copy code
The code is as follows:
* @access public
* @param $currentId int
* @param $nodeName string New node name
* @param $targetId int appended to the specified node of the child node under the current node
* @return bool
+--------------------------------------- ------------------
*/
public function addNode($nodeId,$newData,$type=0,$targetId=0)
{
if(empty($newData))
{
throw_exception('New category cannot be empty');
}
$currentNode = $this->getNodeById($nodeId) ;
switch ($type) {
case 0:
$leftNode = $currentNode[$this->_right]; //The left value of the new node is the right value of the parent node
$ rightNode = $leftNode+1;
break;
case 1:
$leftNode = $currentNode[$this->_left]+1; //The left value of the new node is the left value of the parent node +1
$rightNode = $leftNode+1;
break;
case 2:
$otherNode = $this->getNodeById($targetId );
$leftNode = $otherNode[ $this->_right]+1;
= "UPDATE ".TABLE_NAME." SET ".$this->_right."=".$this->_right."+2 WHERE ".$this->_right." >= ".$leftNode;
// $sql2 = "UPDATE ".TABLE_NAME." SET ".$this->_left."=".$this->_left."+2 WHERE ".$this->_left.">".$leftNode;
$this->setInc($this->_right,$this->_right.">=".$leftNode,2); //Set all nodes whose right value is greater than the left value of the new node Rvalue + 2, pay attention to efficiency
$this->setInc($this->_left,$this->_left.">".$leftNode,2); //Set all nodes greater than the new node Left value + 2
$newData[$this->_left] = (int)$leftNode;
Left value ->add($newData);
}
/**
+------------------------------------------------- ------------
* Delete node
* @access public
* @param type Operation type, the default is 0 to delete all child nodes under the current node, 1 to delete Including its own node
* @param $nodeId int $this->_id
to be deleted * @return bool
----------------------------------------
*/
public function rmNode($nodeId,$type =1)
{
$currentNode = $this->getNodeById($nodeId);
if($type == 1) //删除包含自身的节点
{
$sql = "DELETE FROM __TABLE__ WHERE ".$this->_left.">= {$currentNode[$this->_left]} AND ".$this->_right."_right]}";
$childCount = ($this->getChildCount($nodeId)+1)*2; //要更新的值
$sql2 = "UPDATE __TABLE__ SET ".$this->_right."=".$this->_right."-".$childCount." WHERE ".$this->_right.">".$currentNode[$this->_right];
$sql3 = "UPDATE __TABLE__ SET ".$this->_left."=".$this->_left."-".$childCount." WHERE ".$this->_left.">".$currentNode[$this->_left];
}
else //删除当前节点下的所有节点
{
$sql ="DELETE FROM __TABLE__ WHERE ".$this->_left."> {$currentNode[$this->_left]} AND ".$this->_right."_right]}";
$childCount = $this->getChildCount($nodeId)*2; //要更新的值
$sql2 = "UPDATE __TABLE__ SET ".$this->_right."=".$this->_right ."-".$childCount." WHERE ".$this->_right.">=".$currentNode[$this->_right];
$sql3 = "UPDATE __TABLE__ SET ".$this->_left."=".$this->_left."-".$childCount." WHERE ".$this->_left.">".$currentNode[$this->_left];
}
$this->execute($sql);
$this->execute($sql2);
$this->execute($sql3);
return true;
}
/**
+------------------------------------------------- ------------
* Modify nodes, names, etc.
* @access public
* @param $newData array() must contain the $this->_id to be modified ,k-v must be aligned, such as arr['node_name'] = 'Product'
* @return bool
+--------------------- ----------------------------------
*/
public function modiNode($newData)
{
if(!empty($newData))
{
$id = $newData[ $ this-& gt; _id];
UNSET ($ newdata [$ this-& gt; _id]); $id);
http://www.bkjia.com/PHPjc/327715.html
www.bkjia.com
true
http: //www.bkjia.com/PHPjc/327715.html

PHP remains a powerful and widely used tool in modern programming, especially in the field of web development. 1) PHP is easy to use and seamlessly integrated with databases, and is the first choice for many developers. 2) It supports dynamic content generation and object-oriented programming, suitable for quickly creating and maintaining websites. 3) PHP's performance can be improved by caching and optimizing database queries, and its extensive community and rich ecosystem make it still important in today's technology stack.

In PHP, weak references are implemented through the WeakReference class and will not prevent the garbage collector from reclaiming objects. Weak references are suitable for scenarios such as caching systems and event listeners. It should be noted that it cannot guarantee the survival of objects and that garbage collection may be delayed.

The \_\_invoke method allows objects to be called like functions. 1. Define the \_\_invoke method so that the object can be called. 2. When using the $obj(...) syntax, PHP will execute the \_\_invoke method. 3. Suitable for scenarios such as logging and calculator, improving code flexibility and readability.

Fibers was introduced in PHP8.1, improving concurrent processing capabilities. 1) Fibers is a lightweight concurrency model similar to coroutines. 2) They allow developers to manually control the execution flow of tasks and are suitable for handling I/O-intensive tasks. 3) Using Fibers can write more efficient and responsive code.

The PHP community provides rich resources and support to help developers grow. 1) Resources include official documentation, tutorials, blogs and open source projects such as Laravel and Symfony. 2) Support can be obtained through StackOverflow, Reddit and Slack channels. 3) Development trends can be learned by following RFC. 4) Integration into the community can be achieved through active participation, contribution to code and learning sharing.

PHP and Python each have their own advantages, and the choice should be based on project requirements. 1.PHP is suitable for web development, with simple syntax and high execution efficiency. 2. Python is suitable for data science and machine learning, with concise syntax and rich libraries.

PHP is not dying, but constantly adapting and evolving. 1) PHP has undergone multiple version iterations since 1994 to adapt to new technology trends. 2) It is currently widely used in e-commerce, content management systems and other fields. 3) PHP8 introduces JIT compiler and other functions to improve performance and modernization. 4) Use OPcache and follow PSR-12 standards to optimize performance and code quality.

The future of PHP will be achieved by adapting to new technology trends and introducing innovative features: 1) Adapting to cloud computing, containerization and microservice architectures, supporting Docker and Kubernetes; 2) introducing JIT compilers and enumeration types to improve performance and data processing efficiency; 3) Continuously optimize performance and promote best practices.


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

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

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

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.