0
votes
1answer
19 views

How to get content inside opening and closing elements with PHP DOM Document

I'm learning about HTML parsing in PHP and I'm trying to use it to get the content in-between an opening and closing tag. I've read the documentation and can't figure out how to do it. I know how ...
0
votes
1answer
35 views

Whats the difference between parser and view call? How to retrive the data from the view? (pass, return)

What's the difference between these two calls? What's the general difference between parse and view? When do I use parser->parse and when load->view? $this->load->view('content', $data); ...
1
vote
0answers
17 views

Side effects after increasing MAX_FILE_SIZE in Simple HTML Dom Parser?

I have just one small question related to the great software simplehtmldom parser. Is it safe to increase the MAX_FILE_SIZE from default 600000 to e.g. 100 * 600000 ? I know increasing it will need ...
0
votes
1answer
32 views

Simple PHP Dom Parser Can't Access

I am trying to access one of the turkish ministry of health websites: I've parsed the news from the rest, but this one I can't reach. I've tried many other tricks but when I try this, it gets stuck ...
-1
votes
3answers
49 views

PHP regex - find and replace link

I am trying to do this regex match and replace but not able to do it. Example <a href=one target=home>One</a> <a href=two>Two</a> <a href=three ...
0
votes
0answers
20 views

PHP DOM Parser Timetable to get variables

I'm trying to get the contents of each cell using PHP Simple HTML DOM Parser however I cant seem to get it working correctly. The timetable is read vertically for each day and i'm trying to get each ...
0
votes
2answers
40 views

PHP Get contents of webpage

So I am using the PHP Simple HTML DOM Parser to get the contents of a webpage. After I knew what I was doing was right, I still got the error that there was nothing to be found. So here's what I am ...
1
vote
0answers
30 views

Regular Expression to strip stylesheet link tags [duplicate]

I have been looking for a good regular expression to match all link tags and strip them out of some HTML output. I haven't managed to find anything decent so far. Can anyone help out or recommend ...
0
votes
2answers
51 views

Simple HTML Parser issue

Hi so I'm trying to parse the ratemyprofessor website for professor name and comments and convert each div into plaintext. Here is the div class structure that I'm working with. <div ...
0
votes
1answer
22 views

Facebook ad preview html snippet

According to facebook's docs, I can get an HTML preview snippet of my ad with this request: https://graph.facebook.com/CREATIVE_ID/previews?accesstoken=MY_ACCESS_TOKEN So I did and I got this: ...
2
votes
1answer
116 views

Regular expression to replace words in web pages

I was looking for a regular expression (php) to find/replace some words in a web page. But, it cant replace words between all html tags, only between: italic <i>, bold <b> and plain text. ...
0
votes
0answers
47 views

How to parse a table from a html page and is it possible to parse multiple html's at once in php [duplicate]

I am trying to parse a tabular structured data from a html page.. It has the following structure <table> <tr> <td><a href="url">name</a></td> ...
0
votes
2answers
71 views

PHP - Parsing html tables via DOM

So I am using the PHP Simple HTML DOM Parser and I am trying to get the table list of Top Goalscorers from this webpage: ...
1
vote
1answer
60 views

Simple HTML DOM Parser - Get all plaintex rather than text of certain element

I tried all the solutions posted on this question. Although it is similar to my question, it's solutions aren't working for me. I am trying to get the plain text that is outside of <b> and it ...
0
votes
0answers
26 views

Grab the second image source from the thread

Ok I'm using vbulletin. What i am trying to do is grab an image from a thread and display it on the forum home. Now i have a mod that does this and it does almost exactly what i want it to do. Here ...
0
votes
0answers
55 views

How to parse JS and HTML using PHP

Till now from the Google, i got some html parser for parsing HTML page. but i am unable to choose one from them. Below is my objective- Parse the values dynamically from html page, which conatins ...
2
votes
2answers
57 views

Symfony DomCrawler: Find element with specific attribute value

I'm using the DomCrawler component: http://symfony.com/doc/current/components/dom_crawler.html I'd like to, using the CSS like syntax, get an element with a specific attribute value. Here's the ...
0
votes
2answers
73 views

Parse HTML table in php

I have a database table which consists the following format of data in one column. <table cellspacing="1" cellpadding="0" border="0" width="395"> <tbody> <tr> ...
0
votes
1answer
31 views

PHP ganon how to read javascript

I am scraping some html pages using php ganon dom parser but i am stuck where i need to read some javascript from the source my javascript is like. <script type="text/javascript"> ...
0
votes
1answer
62 views

PHP ganon dom parser get next element when match is found

I am parsing and html dom string from ganon dom parser and want to get the next element plain text when a match is found on previous element e.g my html is like <tr class="last even"> ...
0
votes
1answer
29 views

Can I use HTML purifier to find encoding issues instead of just stripping them?

I have a (large) body of text that I'm working to try and convert from it's originally web-friendly format, to something 'slightly' more restrictive (epub -- and some readers are VERY picky about the ...
-1
votes
4answers
81 views

Regular expression to match after first % and before last %

I need a regular expression that can match what is inside the "%" marks in the following string: 1) Bla bla bla %yada yada yada% bla bla. Even if the form is like this: 2) Bla bla bla %yada ...
2
votes
2answers
125 views

How to get img tag value inside a specific div and specific anchor tag using regular expression

I am new to regular expression i tried a lot for getting image tag value inside a anchor tag html this is my html expresstion <div class="smallSku" id="ctl00_ContentPlaceHolder1_smallImages"> ...
0
votes
0answers
87 views

PHP Simple HTML DOM Parser link and title

<div class="info"> <a class="firmTitle" href="http://rekvizitai.vz.lt/imone/javema/" title="Javema, UAB (61700)">Javema</a></div> I have 5 div likes this I want get from each ...
0
votes
2answers
84 views

PHP regex to check if image is wrapped with a tag

I am creating a wordpress function and need to determine whether an image in the content is wrapped with an a tag that contains a link to a PDF or DOC file e.g. <a ...
0
votes
1answer
76 views

php preg_match for <a href> [closed]

First of all I am new to PHP. Normally I can do preg_match tag for a <div class="T-time">(.*)</div> and read the content but I could not do the same thing for: <div class="T-date"> ...
-1
votes
1answer
37 views

Remove specific a tags from html [duplicate]

i m parsing various html pages on my website. there are some specific 'a' tags i wish to remove. all a tags look like this: <a href="#cite-note-2"><span>..</span></a> <a ...
0
votes
1answer
31 views

Preg Match Issue with HTML Chars

I am really not sure why this is not working, as I understoond it (.*?) should match all characters. I have a feeling it may have something to do with special characters in the HMTL? Here is my code ...
1
vote
1answer
56 views

How do I get the text inside of the <a> This Text </a> tags using cURL?

I got this error "Fatal error: Call to undefined method DOMText::getAttribute()" with this code. I want to capture the text of a link not the source (I don't know what its called).Could someone ...
0
votes
1answer
35 views

Print elements in preg_match_all [duplicate]

$sourcestring=$html; preg_match_all('/<font color=\"#FFFFFF\"><b>(.*?)<\/b>/',$sourcestring,$match); //echo "<pre>".print_r($match,true); echo($match[0][0]); I was wondering ...
1
vote
2answers
49 views

DomDocument_object->getElementsByTagName('a'); returning an empty array when there are anchors on the page

I am using PHP's DomDocument class to parse HTML. When I give it html that has anchors it it and ask it to find all the anchors and store them in an array, it gives me an empty array as if there are ...
0
votes
0answers
40 views

Crawling of a page is not working [closed]

I tried to extract a title tag from the page mentioned in the link "Fun With Riddle". "Fun Riddle" "March Riddle", etc. but I am unable to do it. Can someone help me? $pattern = "/.{0,}<span ...
3
votes
1answer
170 views

DOMDocument remove script tags from HTML source

I used @Alex's approach here to remove script tags from a HTML document using the built in DOMDocument. The problem is if I have a script tag with Javascript content and then another script tag that ...
0
votes
3answers
69 views

Call to a member function find() on a non-object using dom_parser [closed]

I'm scrapping website based on its category. There are plenty of result based on a specific category, like 1000+ result. Each time I scrape each page, it successfully returned the result on a ...
0
votes
1answer
78 views

How to open a link which was parsed in a div?

My site parses a spanish dictionary and lets you search for more than one word at a time. If you look up "hola" you get the first div). Some words come up with suggestions, like "casa", instead of ...
0
votes
1answer
61 views

Using preg_match or regx to replace a lot of words inside a html

Is there any good solution for me to convert an html of following format <span xmlns:v="http://rdf.data-vocabulary.org/#"> <span typeof="v:Breadcrumb"> ...
0
votes
1answer
60 views

How do I match between two closing tags with regex in php?

I have a piece of HTML (NOT a full HTML document) that has a few instances of the following: </div> some text is here </h3> I'd like to match 'some text is ...
1
vote
3answers
68 views

Improving this regex to include what it matches until it matches a certain character

Can someone please help me improve this regex so that it captures everything that starts with http://, https://, or www and then continues until it reaches a ' or ". It includes punctuation and is ...
0
votes
2answers
38 views

Print multi-dimensional array from preg_match_all

Haven't been able to find a straight answer yet.. my array $sitematches: if (preg_match('/<start>(.*?)<finish>/s', $source, $matches)) { if ...
2
votes
1answer
106 views

Finding div class value using php simple html dom or phpQuery

I'm trying to get a hang of php simple html dom and I'm having some issues when it comes to div classes. For example, say on newegg I want to find the value of the div class'skiplink' (I just picked ...
-1
votes
2answers
53 views

Find all <img> tags and change style attribute

i am trying to find a way to get the tag from a string and remove the style attribute . After that i want to add my own style and keep the following text.. For example, i have: <p><img ...
1
vote
1answer
75 views

Replace <a /> tag with its src attribute that have another attribute

this: $text = '<img class="fruit" src="http://exmple.com/apple.png" id="apple"><BR> <img class="fruit" src="http://exmple.com/Lemon.png" ><BR> <img ...
-4
votes
1answer
82 views

php preg_match search pattern

I have a table and would like to get a 2d array (per line and the cell values for each line). I know that I have to use preg_match but I am not good at creating patterns. May you help me? Would be ...
1
vote
2answers
330 views

Use PHP Simple HTML DOM Parser to find table cell and get contents of next sibling

I am trying to use PHP Simple HTML DOM Parser to grab the HTML of an external file. The file contains a table and the goal is to find a able cell with specific data contents, and then get the next ...
0
votes
2answers
136 views

(PHP) Simple HTML DOM parser: HTML symbols

I'm trying to get usernames from this website and this is what I've done: $div = $html->find('div[class=micro-home-recent-review review-item]'); for ($i=0; $i<count($div); $i++){ ...
0
votes
2answers
36 views

Parse between comments in Simple HTML Dom

Can I fetch the data between two html comments using Simple HTML Dom ?? For example, See the below code: <!-- start of comment --> <a href="link1.html" ...
0
votes
0answers
50 views

Loading Malformed HTML in PHP using DomDocument

I am trying to Load a third party HTML document(s), do some processing on it using XPath and regex and then save it to a file. I need to expect that some of the HTML documents processed contain ...
-1
votes
1answer
66 views

Parse error: syntax error, unexpected T_SL in /home/down12/public_html/wp-content/themes/maxmag/header.php on line 37 [closed]

I'm Getting error On this ... i cant understand cz there is nothing in line 37 ... here is my code : enter code here <html xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes(); ...
0
votes
1answer
54 views

How can I remove all tags except an allowed list from html parsed by php

I am parsing html in php and as I have no control over the original content I want to strip it of styling and unnecessary tags while still keep the content and a short list of tags, namely: p, img, ...
0
votes
2answers
26 views

when parsing html, check if element is present

Im parsing html from some a page, to get a list of the outgoing, i want to split them in two - the ones with the rel="nofollow" / rel="nofollow me" / rel="me nofollow" element and the ones with with ...

1 2 3 4 5 11