Table of Contents
Key Takeaways
What is phpQuery
How to Use phpQuery
Importance of phpQuery
Summary
Frequently Asked Questions about Server-Side HTML Handling Using phpQuery
What is phpQuery and why is it important for server-side HTML handling?
How does phpQuery compare to other DOM manipulation libraries?
How do I install phpQuery?
How do I select elements using phpQuery?
How do I manipulate elements using phpQuery?
How do I handle events using phpQuery?
Can I use phpQuery with AJAX?
How do I perform animations using phpQuery?
How do I traverse the DOM using phpQuery?
Can I use phpQuery with other PHP libraries?
Home Backend Development PHP Tutorial phpmaster | Server-Side HTML Handling Using phpQuery

phpmaster | Server-Side HTML Handling Using phpQuery

Feb 27, 2025 am 10:26 AM

phpmaster | Server-Side HTML Handling Using phpQuery

In our day to day tasks of web development it is necessary for us to work with both client and server-side code. We write the business logic using PHP and generate the HTML to be displayed in the users’ browsers. Then we use frameworks such as jQuery or Prototype to provide client-side interactivity. Now think about how you can change and manipulate the generated HTML using server-side PHP code. phpQuery is the ultimate solution that will come to your mind. If you haven’t heard about phpQuery, you may be interested in this article since I am going to give you a brief introduction to phpQuery and explain how you can use it in real-world projects.

Key Takeaways

  • phpQuery is a server-side, chainable, CSS3 selector driven Document Object Model (DOM) API based on the jQuery JavaScript Library. It simplifies tasks requiring DOM manipulation, providing similar functionalities to jQuery and eliminating the need for untidy HTML code generation using echo statements and similar methods.
  • The functionality of phpQuery includes creating DOM elements, selecting and manipulating elements, iterating through the DOM, and printing the output to the browser. It also provides features such as selectors, attributes, traversing, manipulation, Ajax, events, and utilities.
  • phpQuery allows developers to change and manipulate the generated HTML using server-side PHP code. This can improve the performance and security of web applications, as tasks traditionally done on the client-side can now be handled on the server-side.
  • phpQuery provides better code quality and extendibility compared to pure PHP code. It allows for code to be open for extension but closed for modification, adhering to the Open-Closed Principle. This means that new functionality can be added without modifying existing code, improving the robustness and maintainability of the code.

What is phpQuery

phpQuery is a server-side, chainable, CSS3 selector driven Document Object Model (DOM) API based on jQuery JavaScript Library.
This is the definition given on the official phpQuery project page. If you have used jQuery, then you will have an idea of how it can simplify many tasks requiring DOM manipulation. phpQuery provides exactly the same functionalities to be used inside your server-side PHP code. You can say good bye to untidy HTML code generation using echo statements and similar methods. You will have access to most of the functionality provided by jQuery in phpQuery, which can broadly be divided into the 4 tasks mentioned below:
  • Creating DOM elements
  • Selecting and Manipulating elements
  • Iterating through the DOM
  • Printing the output to the browser
You can execute the tasks using the features provided by phpQuery which is known as “ported jQuery sections.” Let’s see the features first:
  • Selectors – find elements based on given condition.
  • Attributes – work with attributes of DOM elements.
  • Traversing – travel through list of selected elements.
  • Manipulation – add and remove content on selected elements.
  • Ajax – create server side ajax requests.
  • Events – bind DOM events on selected elements.
  • Utilities – generic functions to support other features.
You can download the phpQuery library from the project page at code.google.com/p/phpquery. Copy the folder to your web server and you are ready to go. Installation is simple as that, and you can execute the demo.php file to get started.

How to Use phpQuery

I’m going to show you how to create a two-column unordered list with headers and different row colors for odd and even rows, as shown in the image below:

phpmaster | Server-Side HTML Handling Using phpQuery

First, let’s create an HTML document using phpQuery:
<span><span><?php
</span></span><span><span>require("phpQuery/phpQuery.php");
</span></span><span><span>$doc = phpQuery<span>::</span>newDocument("<div/>");</span></span>
Copy after login
Copy after login
The above code will create a basic HTML document with a div tag. The library provides various methods of creating documents; I have used the simplest one, but you can find others in demo.php and the documentation. Now we need to create an unordered list and add it to our HTML document.
<span><span><?php
</span></span><span><span>...
</span></span><span><span>$doc["div"]->append("<ul><li>Product Name</li><li>Price</li></ul>");
</span></span><span><span>$products = array(
</span></span><span>    <span>array("Product 1","<span><span></span>"</span>),
</span></span><span>    <span>array("Product 2","<span><span></span>"</span>),
</span></span><span>    <span>array("Product 3","<span><span></span>"</span>));
</span></span><span>
</span><span><span>foreach($products as $key=>$product) {
</span></span><span>    <span>$doc["div ul"]->append("<li><span><span>$product[0]</span></li><li><span>$product[1]</span></li>"</span>);
</span></span><span><span>}
</span></span><span><span>print $doc;</span></span>
Copy after login
Copy after login
You can see that we have the unordered list now. But all the elements are in a single column, which is the default. We have to move the even elements of the list into a second column.
<span><span><?php
</span></span><span><span>...
</span></span><span><span>$doc["div ul"]->attr("style", "width:420px;");
</span></span><span><span>$doc["div ul"]->find("li:even")->attr("style","width:200px; float:left; padding:5px; list-style:none;");
</span></span><span><span>$doc["div ul"]->find("li:odd")->attr("style","width:200px; float:left; padding:5px; list-style:none;");</span></span>
Copy after login
I’m using the style attribute to define the CSS styles required for our example here, but it’s not recommended to use inline styles unless it’s really needed. Always use CSS classes to add styles. Now, let’s highlight the header and even numbered rows using phpQuery methods.
<span><span><?php
</span></span><span><span>...
</span></span><span><span>$doc["div ul"]->find("li:nth-child(4n)")->attr("style","background:#EEE; width:200px; float:left; padding:5px; list-style:none;");
</span></span><span><span>$doc["div ul"]->find("li:nth-child(4n-1)")->attr("style","background:#EEE; width:200px; float:left; padding:5px; list-style:none;");
</span></span><span><span>$doc["div ul"]->find("li:lt(1)")->attr("style","background:#CFCFCF; width:200px; float:left; padding:5px; list-style:none;");</span></span>
Copy after login
We have completed our simple example, and you should now have an idea of how phpQuery can be used to simplify HTML generation server-side. Everything we did is almost the same as would be done with jQuery, except we did all the actions against the $doc object.

Importance of phpQuery

Even though I explained the functionality of phpQuery, you must be wondering why we need the library when we have jQuery on the client-side. I’ll show the importance of phpQuery using a practical scenario. Consider the following situation: assume we have a table like the following, which has all the information about web developers who went to an interview.

phpmaster | Server-Side HTML Handling Using phpQuery

Now here’s the list of requirements we have to develop in this scenario:
  • Applicants who got a mark over 60 for the exam should be highlighted in blue.
  • Applicants with more than 3 years working experience should have a link in front labeled “Apply for Senior Software Engineer” and other applicants should have the link “Apply for Software Engineer”.
  • The company has a salary structure based on experience:
    • 1 year – $5,000
    • 2 years – $10,000
    • 3 years – $20,000
    • more than 3 years – $50,000
    The salary column should be highlighted in green for applicants who match the criteria.
This is how the output should look:

phpmaster | Server-Side HTML Handling Using phpQuery

A developer might provide the following solution to meet the requirements using pure PHP code.
<span><span><?php
</span></span><span><span>require("phpQuery/phpQuery.php");
</span></span><span><span>$doc = phpQuery<span>::</span>newDocument("<div/>");</span></span>
Copy after login
Copy after login
Now let’s do it using phpQuery and compare the code and advantages.
<span><span><?php
</span></span><span><span>...
</span></span><span><span>$doc["div"]->append("<ul><li>Product Name</li><li>Price</li></ul>");
</span></span><span><span>$products = array(
</span></span><span>    <span>array("Product 1","<span><span></span>"</span>),
</span></span><span>    <span>array("Product 2","<span><span></span>"</span>),
</span></span><span>    <span>array("Product 3","<span><span></span>"</span>));
</span></span><span>
</span><span><span>foreach($products as $key=>$product) {
</span></span><span>    <span>$doc["div ul"]->append("<li><span><span>$product[0]</span></li><li><span>$product[1]</span></li>"</span>);
</span></span><span><span>}
</span></span><span><span>print $doc;</span></span>
Copy after login
Copy after login
phpQuery is easy if you have the knowledge of working with jQuery already. Most of the above code will be self-explanatory. I want to mention though that pq() refers to the current document. All the others are jQuery functions. And even though both look similar, the code which uses phpQuery provides better quality and extendibility. Think how brittle the original code can be if you have to add extra functionality later. Let’s assume we want to add additional validation on marks based on the working experience. In that scenario you’d have to add another method and assign the returned result inside the foreach loop. That means you have to change already written code, violating the Open-Closed Principle:
Software entities (classes, modules, functions, etc.) should be open for extension, but closed for modification.
With the second example which uses phpQuery, the code is first generated without any validation, and then we pass the table into each function and the changes are placed into the original table. Each function does not affect the other functions, so we can write a new function for any new requirements and use it outside the loop with the other functions. We don’t modify already existing code, which sounds good, right? This is called decoration:
Decorator pattern is a design pattern that allows behavior to be added to an existing object dynamically.

Summary

We started this tutorial by introducing phpQuery features and its importance. After learning how to use phpQuery using a simple example, we moved to practical example where it became much more important in improving the quality of code. phpQuery has provided us with a new perspective to working with HTML in server side, and I hope you will use phpQuery in different ways and share your personal experiences in the comments below.

Frequently Asked Questions about Server-Side HTML Handling Using phpQuery

What is phpQuery and why is it important for server-side HTML handling?

phpQuery is a server-side, chainable, CSS3 selector driven Document Object Model (DOM) API based on jQuery JavaScript Library. It is written in PHP5 and provides an easy way to handle HTML elements on the server side. It allows developers to perform tasks such as HTML document traversal and manipulation, event handling, and animation, which were traditionally done on the client side. This can significantly improve the performance and security of web applications.

How does phpQuery compare to other DOM manipulation libraries?

phpQuery stands out for its simplicity and ease of use, especially for developers already familiar with jQuery. It supports most of the jQuery syntax, making it easy to select, manipulate, and traverse HTML elements. Unlike some other libraries, phpQuery is chainable, meaning you can link together multiple actions in a single statement.

How do I install phpQuery?

phpQuery can be installed using Composer, a dependency management tool for PHP. You can add phpQuery to your project by running the command composer require phpquery/phpquery. This will download and install the latest stable version of phpQuery and its dependencies.

How do I select elements using phpQuery?

phpQuery uses CSS3 selectors to select elements, similar to jQuery. For example, to select all paragraphs in a document, you would use $doc['p']. You can also use more complex selectors, such as $doc['div.content > p'] to select all paragraphs that are direct children of a div with the class “content”.

How do I manipulate elements using phpQuery?

phpQuery provides several methods for manipulating elements. For example, you can use the append(), prepend(), after(), and before() methods to insert content. You can also use the attr() method to get or set the value of an attribute, and the addClass(), removeClass(), and toggleClass() methods to manipulate classes.

How do I handle events using phpQuery?

phpQuery supports event handling through the bind() method. You can use this method to attach event handlers to elements. For example, $doc['p']->bind('click', function() { echo 'Paragraph clicked!'; }); would echo “Paragraph clicked!” whenever a paragraph is clicked.

Can I use phpQuery with AJAX?

Yes, phpQuery supports AJAX through the ajax() method. This method allows you to send asynchronous HTTP requests to the server and manipulate the response using phpQuery.

How do I perform animations using phpQuery?

phpQuery supports animations through the animate() method. This method allows you to create custom animations by changing CSS properties over time.

How do I traverse the DOM using phpQuery?

phpQuery provides several methods for traversing the DOM, such as children(), parent(), next(), prev(), find(), and closest(). These methods allow you to navigate through the elements in a document.

Can I use phpQuery with other PHP libraries?

Yes, phpQuery can be used alongside other PHP libraries. It is designed to be flexible and interoperable, making it a great tool for any PHP developer’s toolkit.

The above is the detailed content of phpmaster | Server-Side HTML Handling Using phpQuery. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
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

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

Video Face Swap

Video Face Swap

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

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Hot Topics

Java Tutorial
1664
14
PHP Tutorial
1266
29
C# Tutorial
1239
24
PHP and Python: Comparing Two Popular Programming Languages PHP and Python: Comparing Two Popular Programming Languages Apr 14, 2025 am 12:13 AM

PHP and Python each have their own advantages, and choose according to project requirements. 1.PHP is suitable for web development, especially for rapid development and maintenance of websites. 2. Python is suitable for data science, machine learning and artificial intelligence, with concise syntax and suitable for beginners.

PHP in Action: Real-World Examples and Applications PHP in Action: Real-World Examples and Applications Apr 14, 2025 am 12:19 AM

PHP is widely used in e-commerce, content management systems and API development. 1) E-commerce: used for shopping cart function and payment processing. 2) Content management system: used for dynamic content generation and user management. 3) API development: used for RESTful API development and API security. Through performance optimization and best practices, the efficiency and maintainability of PHP applications are improved.

Explain secure password hashing in PHP (e.g., password_hash, password_verify). Why not use MD5 or SHA1? Explain secure password hashing in PHP (e.g., password_hash, password_verify). Why not use MD5 or SHA1? Apr 17, 2025 am 12:06 AM

In PHP, password_hash and password_verify functions should be used to implement secure password hashing, and MD5 or SHA1 should not be used. 1) password_hash generates a hash containing salt values ​​to enhance security. 2) Password_verify verify password and ensure security by comparing hash values. 3) MD5 and SHA1 are vulnerable and lack salt values, and are not suitable for modern password security.

PHP: A Key Language for Web Development PHP: A Key Language for Web Development Apr 13, 2025 am 12:08 AM

PHP is a scripting language widely used on the server side, especially suitable for web development. 1.PHP can embed HTML, process HTTP requests and responses, and supports a variety of databases. 2.PHP is used to generate dynamic web content, process form data, access databases, etc., with strong community support and open source resources. 3. PHP is an interpreted language, and the execution process includes lexical analysis, grammatical analysis, compilation and execution. 4.PHP can be combined with MySQL for advanced applications such as user registration systems. 5. When debugging PHP, you can use functions such as error_reporting() and var_dump(). 6. Optimize PHP code to use caching mechanisms, optimize database queries and use built-in functions. 7

What are HTTP request methods (GET, POST, PUT, DELETE, etc.) and when should each be used? What are HTTP request methods (GET, POST, PUT, DELETE, etc.) and when should each be used? Apr 09, 2025 am 12:09 AM

HTTP request methods include GET, POST, PUT and DELETE, which are used to obtain, submit, update and delete resources respectively. 1. The GET method is used to obtain resources and is suitable for read operations. 2. The POST method is used to submit data and is often used to create new resources. 3. The PUT method is used to update resources and is suitable for complete updates. 4. The DELETE method is used to delete resources and is suitable for deletion operations.

Explain the difference between self::, parent::, and static:: in PHP OOP. Explain the difference between self::, parent::, and static:: in PHP OOP. Apr 09, 2025 am 12:04 AM

In PHPOOP, self:: refers to the current class, parent:: refers to the parent class, static:: is used for late static binding. 1.self:: is used for static method and constant calls, but does not support late static binding. 2.parent:: is used for subclasses to call parent class methods, and private methods cannot be accessed. 3.static:: supports late static binding, suitable for inheritance and polymorphism, but may affect the readability of the code.

How does PHP handle file uploads securely? How does PHP handle file uploads securely? Apr 10, 2025 am 09:37 AM

PHP handles file uploads through the $\_FILES variable. The methods to ensure security include: 1. Check upload errors, 2. Verify file type and size, 3. Prevent file overwriting, 4. Move files to a permanent storage location.

How does PHP type hinting work, including scalar types, return types, union types, and nullable types? How does PHP type hinting work, including scalar types, return types, union types, and nullable types? Apr 17, 2025 am 12:25 AM

PHP type prompts to improve code quality and readability. 1) Scalar type tips: Since PHP7.0, basic data types are allowed to be specified in function parameters, such as int, float, etc. 2) Return type prompt: Ensure the consistency of the function return value type. 3) Union type prompt: Since PHP8.0, multiple types are allowed to be specified in function parameters or return values. 4) Nullable type prompt: Allows to include null values ​​and handle functions that may return null values.

See all articles