Giter Club home page Giter Club logo

Comments (9)

BERRAMOU avatar BERRAMOU commented on May 28, 2024 53

@$dom->loadHTML($url);
works for me

from html-pretty-min.

golddragon007 avatar golddragon007 commented on May 28, 2024 20

HTML5 is not supported by libxml2, therefore any HTML5 tag will fail.
You can use (Since Libxml 2.6.0) the LIBXML_NOERROR flag to not get these errors, but in any way when you disable error reporting or suppress it, you will not receive errors for malformatted content.

$dom->loadHtml($id, LIBXML_NOERROR);

from html-pretty-min.

behrouz-azand avatar behrouz-azand commented on May 28, 2024 16

$dom = new domDocument;
libxml_use_internal_errors(true);
// load the html into the object
$dom->loadHTML($url);

from html-pretty-min.

fri3ndly avatar fri3ndly commented on May 28, 2024 7

@ will disable error reporting

from html-pretty-min.

marcaum54 avatar marcaum54 commented on May 28, 2024 5

@$dom->loadHTML($url);
works for me

why does this work?
can somebody explain what that @ does at the beginning of the line, and why the downvotes?

hides errors and super not recommended

from html-pretty-min.

ynfantes avatar ynfantes commented on May 28, 2024 3

HTML5 is not supported by libxml2, therefore any HTML5 tag will fail. You can use (Since Libxml 2.6.0) the LIBXML_NOERROR flag to not get these errors, but in any way when you disable error reporting or suppress it, you will not receive errors for malformatted content.

$dom->loadHtml($id, LIBXML_NOERROR);

Thanks, work for me!

from html-pretty-min.

tankfairies avatar tankfairies commented on May 28, 2024 2

In PHP the @ symbol ignores error. See

https://www.php.net/manual/en/language.operators.errorcontrol.php

from html-pretty-min.

ecairol avatar ecairol commented on May 28, 2024

@$dom->loadHTML($url);
works for me

why does this work?
can somebody explain what that @ does at the beginning of the line, and why the downvotes?

from html-pretty-min.

webcomsco avatar webcomsco commented on May 28, 2024

$dom->loadHtml($id);
work for me ( in Laravel 8.*)

from html-pretty-min.

Related Issues (4)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.