Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
1answer
897 views

Limitations of PEG grammar & parser generators?

I was enjoying using YARD a lot: http://www.ootl.org/yard/ http://code.google.com/p/yardparser/ http://www.codeproject.com/KB/recipes/yard-tokenizer.aspx I was able to construct fully functional ...
2
votes
1answer
349 views

Is it possible to parse PHP using PEG?

The question is very straightforward: Is it possible to parse PHP using PEG? I want to use a PEG parser-generator to parse PHP. Please kindly advise. Thank you!
1
vote
2answers
40 views

Why embedding functions inside of strings is different than variables

I've asked a question like this before but this one is different, this is more about parsing logic. My previous questions was about how to embed a function inside of a string (double-quoted) and I ...
1
vote
1answer
37 views

having trouble parsing an array in php

Just starting with php and sorry if this is a newbie question but i'm having problems parsing a array. I get this value(output of print_r($result);): Array ( [0] => stdClass Object ( ...
1
vote
3answers
610 views

PHP- HTML parsing :: How can be taken charset value of webpage with simple html dom parser?

PHP:: How can be taken charset value of webpage with simple html dom parser (utf-8, windows-255, etc..)? remark: its have to be done with html dom parser http://simplehtmldom.sourceforge.net ...
0
votes
0answers
19 views

Using xml_parser to retrieve attributes on nested elements

I'm migrating from SimpleXML to the SAX parser but running into issues properly retrieving attributes from nested elements within my xml feed. I'm able to grab the attributes out using the code ...
0
votes
2answers
66 views

Help with reading javascript output in php

i'm trying to read automatically a javascript output with php, this is the form and the output: <b>SeteZoom:</b> <script>document.writeln(resp)</script> <form name=form1 ...
0
votes
1answer
239 views

Finding Content from Javascript using Simple HTML DOM Parser

How do I find the content "Please enter a valid key again" using Simple HTML DOM Parser? Example: <script language="javascript"> function Enable() { alert('Please enter a ...
0
votes
2answers
372 views

php get selected option

I am processing files that contain HTML markup. I need to get the selected option from the drop down box. In this case Australia is the selected option .. <select name="cCountry" id="cCountry" ...
0
votes
1answer
321 views

Should I use regex to parse this string of html table data?

What's the best way to parse this data? Should I use regex or something else? The data is in html, but I found it from a website and will be parsing this and only this string (note: string is much ...
0
votes
4answers
219 views

fetch data from elements with same id in a HTML document

I am using PHP DOMDocument class to parse the HTML file, and using the code, $dom =new DOMDocument(); @$dom->loadHTMLFile($file_path); $dom->getElementById("my_id") to fetch the data of the ...
0
votes
5answers
100 views

Find PHP with REGEX

I need a REGEX that can find blocks of PHP code in a file. For example: <? print '<?xml version="1.0" encoding="UTF-8"?>';?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 ...
-1
votes
1answer
203 views

Building PHP WYSIWYG Editor

I am building a web application in which the user may add a page, edit the layout, drag drop element, resize element, format the text, edit the element attribute etc. In the page the user may include ...