> 백엔드 개발 > PHP 튜토리얼 > PHP의 새로운 DOM 선택기 기능 안내

PHP의 새로운 DOM 선택기 기능 안내

Barbara Streisand
풀어 주다: 2024-12-15 15:45:12
원래의
209명이 탐색했습니다.

Guide to PHP  new DOM Selector Feature

빠르게 발전하는 PHP 환경에서 각 새 버전에는 개발 워크플로를 간소화하고 현대화하는 기능이 도입됩니다. 오랫동안 기다려온 DOM 확장 기능의 향상을 추가한 PHP 8.4도 예외는 아닙니다. 개발자가 DOM 요소와 상호 작용하는 방식을 크게 향상시키는 새로운 기능이 도입되었습니다.

이 기사에서는 PHP 8.4의 새로운 DOM 선택기 기능, 구문, 사용 사례 및 DOM 요소 작업을 단순화하는 방법을 자세히 살펴보겠습니다.

PHP 8.4의 새로운 기능은 무엇입니까? DOM 선택자

PHP 8.4에서는 개발자가 요소를 보다 직관적이고 유연하게 선택하고 조작할 수 있는 DOM 선택기 API를 추가하여 DOM 확장에 대한 주요 업데이트를 도입했습니다.

이전에는 개발자가 기능적이지만 장황하고 덜 직관적인 gnetElementsByTagName(), getElementById() 및 querySelector()와 같은 메서드에 의존했습니다. 이러한 방법에는 수동 반복과 선택 논리가 필요하므로 코드를 유지 관리하기가 더 어렵습니다.

PHP 8.4를 사용하면 개발자는 JavaScript와 유사한 기본 CSS 선택기 구문을 사용하여 보다 유연하고 읽기 쉬운 요소를 선택할 수 있습니다. 이러한 변화는 특히 복잡하거나 깊게 중첩된 HTML 및 XML 문서를 처리할 때 코드를 단순화합니다.

DOM 선택기란 무엇입니까?

PHP 8.4에 도입된 DOM 선택기 기능은 PHP DOMDocument 확장에 최신 CSS 기반 요소 선택 기능을 제공합니다. 이는 JavaScript의 널리 사용되는 querySelector() 및 querySelectorAll() 메소드의 기능을 모방하므로 개발자는 CSS 선택기를 사용하여 DOM 트리에서 요소를 선택할 수 있습니다.

이러한 방법을 사용하면 개발자는 복잡한 CSS 선택기를 사용하여 요소를 선택할 수 있으므로 DOM 조작이 훨씬 간단하고 직관적이게 됩니다.

DOM 선택기는 어떻게 작동하나요?

PHP 8.4에서는 DOM 확장에 querySelector() 및 querySelectorAll()이라는 두 가지 강력한 메서드가 도입되어 JavaScript에서와 마찬가지로 CSS 선택기를 사용하여 DOM 요소를 더 쉽고 직관적으로 선택할 수 있습니다.
(https://scrapfly.io/blog/css-selector-cheatsheet/)

1. 쿼리선택기()

querySelector() 메소드를 사용하면 지정된 CSS 선택기와 일치하는 DOM에서 단일 요소를 선택할 수 있습니다.

구문 :

DOMElement querySelector(string $selector)

로그인 후 복사

:

$doc = new DOMDocument();
$doc->loadHTML('<div>



<p>This method returns the <strong>first element</strong> matching the provided CSS selector. If no element is found, it returns null.</p>

<h4>
  
  
  2. querySelectorAll()
</h4>

<p>The querySelectorAll() method allows you to select <strong>all elements</strong> matching the provided CSS selector. It returns a DOMNodeList object, which is a collection of DOM elements.</p>

<p><strong>Syntax</strong> :<br>
</p>

<pre class="brush:php;toolbar:false">DOMNodeList querySelectorAll(string $selector)

로그인 후 복사

:

$doc = new DOMDocument();
$doc->loadHTML('<div>



<p>This method returns a DOMNodeList containing all elements matching the given CSS selector. If no elements are found, it returns an empty DOMNodeList.</p>

<h2>
  
  
  Key Benefits of the DOM Selector
</h2>

<p>CSS selector in PHP 8.4 brings several key advantages to developers, the new methods streamline DOM element selection, making your code cleaner, more flexible, and easier to maintain.</p>

<h3>
  
  
  1. Cleaner and More Intuitive Syntax
</h3>

<p>With the new DOM selector methods, you can now use the familiar CSS selector syntax, which is much more concise and readable. No longer do you need to write out complex loops to traverse the DOM just provide a selector, and PHP will handle the rest.</p>

<h3>
  
  
  2. Greater Flexibility
</h3>

<p>The ability to use CSS selectors means you can select elements based on attributes, pseudo-classes, and other criteria, making it easier to target specific elements in the DOM.</p>

<p>For example, you can use:</p>

<ul>
<li>.class</li>
<li>#id</li>
<li>div > p:first-child
로그인 후 복사
  • [data-attribute="value"]
  • This opens up a much more powerful and flexible way of working with HTML and XML documents.

    3. Improved Consistency with JavaScript

    For developers familiar with JavaScript, the new DOM selector methods will feel intuitive. If you’ve used querySelector() or querySelectorAll() in JavaScript, you’ll already be comfortable with their usage in PHP.

    Comparison with Older PHP DOM Methods

    To better understand the significance of these new methods, let's compare them to traditional methods available in older versions of PHP.

    Feature Old Method New DOM Selector
    Select by ID getElementById('id') querySelector('#id')
    Select by Tag Name getElementsByTagName('tag') querySelectorAll('tag')
    Select by Class Name Loop through getElementsByTagName() querySelectorAll('.class')
    Complex Selection Not possible querySelectorAll('.class > tag')
    Return Type (Single Match) DOMElement `DOMElement
    Return Type (Multiple) {% raw %}DOMNodeList (live) DOMNodeList (static)

    Practical Examples

    Let’s explore some practical examples of using the DOM selector methods in PHP 8.4. These examples will show how you can use CSS selectors to efficiently target elements by ID, class, and even nested structures within your HTML or XML documents.

    By ID

    The querySelector('#id') method selects a unique element by its id, which should be unique within the document. This simplifies targeting specific elements and improves code readability.

    $doc = new DOMDocument();
    $doc->loadHTML('<div>
    
    
    
    <p>This code selects the element with the>
    
    <h3>
      
      
      By Class
    </h3>
    
    <p>The querySelectorAll('.class') method selects all elements with a given class, making it easy to manipulate groups of elements, like buttons or list items, in one go.<br>
    </p>
    
    <pre class="brush:php;toolbar:false">$doc = new DOMDocument();
    $doc->loadHTML('<div>
    
    
    
    <p>This code selects all elements with the class item and outputs their text content. It’s ideal for working with multiple elements that share the same class name.</p>
    
    <h3>
      
      
      Nested Elements
    </h3>
    
    <p>The querySelectorAll('.parent > .child') method targets direct children of a specific parent, making it easier to work with nested structures like lists or tables.<br>
    
    
    <pre class="brush:php;toolbar:false">$doc = new DOMDocument();
    $doc->loadHTML('<ul>
    
    
    
    <p>This code selects the <li> elements that are direct children of the .list class and outputs their text content. The > combinator ensures only immediate child elements are selected, making it useful for working with nested structures.
    
    <h2>
      
      
      Example Web Scraper using Dom Selector
    </h2>
    
    <p>Here's an example PHP web scraper using the new DOM selector functionality introduced in PHP 8.4. This script extracts product data from the given product page:<br>
    </p>
    
    <pre class="brush:php;toolbar:false"><?php
    
    // Load the HTML of the product page
    $url = 'https://web-scraping.dev/product/1';
    $html = file_get_contents($url);
    
    // Create a new DOMDocument instance and load the HTML
    $doc = new DOMDocument();
    libxml_use_internal_errors(true); // Suppress warnings for malformed HTML
    $doc->loadHTML($html);
    libxml_clear_errors();
    
    // Extract product data using querySelector and querySelectorAll
    $product = [];
    
    // Extract product title
    $titleElement = $doc->querySelector('h1');
    $product['title'] = $titleElement ? $titleElement->textContent : null;
    
    // Extract product description
    $descriptionElement = $doc->querySelector('.description');
    $product['description'] = $descriptionElement ? $descriptionElement->textContent : null;
    
    // Extract product price
    $priceElement = $doc->querySelector('.price');
    $product['price'] = $priceElement ? $priceElement->textContent : null;
    
    // Extract product variants
    $variantElements = $doc->querySelectorAll('.variants option');
    $product['variants'] = [];
    if ($variantElements) {
        foreach ($variantElements as $variant) {
            $product['variants'][] = $variant->textContent;
        }
    }
    
    // Extract product image URLs
    $imageElements = $doc->querySelectorAll('.product-images img');
    $product['images'] = [];
    if ($imageElements) {
        foreach ($imageElements as $img) {
            $product['images'][] = $img->getAttribute('src');
        }
    }
    
    // Output the extracted product data
    echo json_encode($product, JSON_PRETTY_PRINT);
    
    
    로그인 후 복사

    웹 스크래핑 API로 강화

    Guide to PHP  new DOM Selector Feature

    ScrapFly는 대규모 데이터 수집을 위한 웹 스크래핑, 스크린샷 및 추출 API를 제공합니다.

    • 안티 봇 보호 우회 - 차단 없이 웹페이지를 긁어냅니다!
    • 주거용 프록시 순환 - IP 주소 및 지리적 차단을 방지합니다.
    • JavaScript 렌더링 - 클라우드 브라우저를 통해 동적 웹페이지를 스크랩합니다.
    • 전체 브라우저 자동화 - 개체를 스크롤하고 입력하고 클릭하도록 브라우저를 제어합니다.
    • 형식 변환 - HTML, JSON, 텍스트 또는 마크다운으로 스크랩합니다.
    • Python 및 Typescript SDK는 물론 Scrapy 및 코드 없는 도구 통합.

    무료로 사용해 보세요!

    Scrapfly에 대해 자세히 알아보기

    PHP 8.4 DOM 선택기의 제한 사항

    DOM 선택기 API는 강력한 도구이지만 명심해야 할 몇 가지 제한 사항이 있습니다.

    1. 이전 버전에서는 사용할 수 없습니다.

    새로운 DOM 선택기 메소드는 PHP 8.4 이상에서만 사용할 수 있습니다. 이전 버전을 사용하는 개발자는 getElementById() 및 getElementsByTagName()과 같은 이전 DOM 메서드를 사용해야 합니다.

    2. 정적 NodeList

    querySelectorAll() 메서드는 정적 DOMNodeList를 반환합니다. 즉, 초기 선택 후 DOM에 대한 변경 사항이 반영되지 않습니다. 이는 JavaScript의 라이브 NodeList와 다릅니다.

    3. 제한된 의사 클래스 지원

    기본 CSS 선택자는 지원되지만 고급 가상 클래스(예: :nth-child(), :nth-of-type())는 PHP에서 지원이 제한되거나 전혀 지원되지 않을 수 있습니다.

    4. 대용량 문서에서의 성능

    매우 큰 문서에 복잡한 CSS 선택기를 사용하면 특히 DOM 트리가 깊게 중첩된 경우 성능 문제가 발생할 수 있습니다.

    FAQ

    이 가이드를 마무리하기 위해 다음은 PHP 8.4의 새로운 DOM 선택기에 관해 자주 묻는 몇 가지 질문에 대한 답변입니다.

    PHP 8.4의 주요 새로운 기능은 무엇입니까?

    PHP 8.4에는 DOM 선택기 메서드(querySelector() 및 querySelectorAll())가 도입되어 개발자가 CSS 선택기를 사용하여 DOM 요소를 선택할 수 있으므로 DOM 조작이 더욱 직관적이고 효율적이게 됩니다.

    이전 버전에서는 사용할 수 없었던 DOM 조작에 대한 PHP 8.4의 변경 사항은 무엇입니까?

    PHP 8.4에서는 querySelector() 및 querySelectorAll()의 도입으로 개발자가 CSS 선택기를 직접 사용하여 DOM 요소를 선택할 수 있습니다. 이는 getElementsByTagName()과 같은 메소드가 더 많은 수동 반복을 필요로 하고 유연성이 떨어지는 이전 PHP 버전에서는 불가능했습니다.

    PHP 8.4는 "querySelector()" 및 "querySelectorAll()"의 모든 CSS 선택기를 지원합니까?

    PHP 8.4는 광범위한 CSS 선택기를 지원하지만 몇 가지 제한 사항이 있습니다. 예를 들어 :nth-child() 및 :not()과 같은 의사 클래스는 완전히 지원되지 않거나 기능이 제한될 수 있습니다.

    요약

    PHP 8.4에는 DOM 선택기 API가 도입되어 직관적인 CSS 기반 선택 방법을 제공하여 DOM 문서 작업을 단순화합니다. 새로운 querySelector() 및 querySelectorAll() 메서드를 사용하면 개발자는 CSS 선택기를 사용하여 DOM 요소를 쉽게 대상으로 지정하여 코드를 더욱 간결하고 유지 관리하기 쉽게 만들 수 있습니다.

    몇 가지 제한 사항이 있지만 이러한 새로운 방법의 이점은 단점보다 훨씬 큽니다. PHP 8.4 이상을 사용하는 경우 DOM 조작 작업을 간소화하기 위해 이 기능을 채택하는 것이 좋습니다.

    위 내용은 PHP의 새로운 DOM 선택기 기능 안내의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

    원천:dev.to
    본 웹사이트의 성명
    본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
    저자별 최신 기사
    인기 튜토리얼
    더>
    최신 다운로드
    더>
    웹 효과
    웹사이트 소스 코드
    웹사이트 자료
    프론트엔드 템플릿