Tagged Questions
0
votes
1answer
66 views
Detect sentence structure [closed]
Is there a way to translate a sentence to Noun, pronoun, adjective, verb, adverb, conjunction, preposition, and interjection?
I am looking to do this in PHP, I do understand that there might be no ...
1
vote
1answer
171 views
PHP and regex to convert “a” to “an” before a word starting with a vowel
I was pretty surprised I couldn't find this anywhere online, including stackoverflow. I'm looking for the regex to use in the PHP function preg_replace to achieve this:
Find any part of the text ...
0
votes
0answers
56 views
Display Child Pages in specific divs through $args and %index
I am trying to display child pages with specific divs.
<?php
// Set up the arguments for retrieving the pages
$args = array(
'post_type' => ...
2
votes
1answer
155 views
Searching for Lime parser generator grammar examples… Just cannot find any
I'm writing a messaging system for the users of our site, which implements segmentation to allow for individual messages to target dynamic segments of users. Because a given message's segment ...
1
vote
3answers
179 views
Is PHP an entirely Context-Free Language or does it have Context-Sensitive parts?
PHP has a Bison grammar file so does that mean that PHP is a completely Context-Free language?
6
votes
3answers
507 views
How is ++$a + $a++ ambiguous in PHP?
The php manual claims that:
$a = 1;
echo ++$a + $a++;
is ambiguous under its grammar, but it seems extremely clear to me. ++$a and $a++ evaluate first, from left to right, so ++$a increments and ...
1
vote
4answers
130 views
How does rendering a comment alongside the PHP opening tag lead to an “unexpected T_STRING”?
The following code:
<?php//comment
error_reporting(0);
results (at least in 5.2.11) in:
Parse error: syntax error, unexpected T_STRING
... which I find quite bizarre.
Whether or not ...
0
votes
1answer
92 views
PHP - Correct User-Generated Content On Submission
Is there an existing function or tool that corrects common grammar and spelling mistakes (laziness?), e.g.
" im " = " I'm "
" i " = " I "
" u " = " you "
" theres " = " there's "
Capitalize first ...
4
votes
2answers
1k views
EBNF grammar definitions for PHP?
I am wondering if someone has compiled an EBNF for PHP somewhere. I found both this site and this site. Both seem like they are incomplete, though. This question is very similar, but it's a year old. ...
2
votes
1answer
153 views
Unescaped dollar sign doesn't throw error; PHP processing edge case?
I've run into what seems like a strange edge case with the PHP processor. According to the PHP manual:
Variables in PHP are represented by a dollar sign followed by the name
of the variable. The ...
1
vote
2answers
157 views
Validating Regular Sentence Grammar with Regex
So I want to validate a string based on whether or not it contains only grammatical characters as well as numbers and letters.(basically A-Z, a-z, 0-9, plus periods(.), commas(,) colons(:), ...
12
votes
8answers
3k views
How to get all captures of subgroup matches with preg_match_all()?
Update/Note:
I think what I'm probably looking for is to get the captures of a group in PHP.
Referenced: PCRE regular expressions using named pattern subroutines.
(Read carefully:)
I have a ...
4
votes
2answers
260 views
Tools to check grammar when programming
I am programming in PHP and I want to check if there are any mistakes in my website and if there are, it would highlight those words which are written incorrect. Is it possible? Thank you.
3
votes
4answers
777 views
PHP parser for Java class / code?
I have a Java class (more precisely a jpa entity) that I want to "parse" in PHP. I want to get the fields of that class, the annotations associated with each field, etc.
Is there any PHP tool that ...
9
votes
7answers
663 views
Programmatically determine whether to describe an object with “a” or “an”?
I have a database of nouns (ex "house", "exclamation point", "apple") that I need to output and describe in my application. It's hard to put together a natural-sounding sentence to describe an item ...
3
votes
2answers
1k views
Grammar checking API?
Are there any APIs that check the grammar of a given string?
If so can you give examples?
1
vote
1answer
207 views
PHP_ParserGenerator - bug in grammar or in the parser generator?
I'm trying to create a parser for a simple language with the lemon port to PHP, and it works, almost.
The following grammar:
%name SP_
%declare_class { class SpecParser }
%token_prefix SP_
...
6
votes
1answer
476 views
Is this grammar not LR(1)?
I'm working on parse generator for PHP. Currently I'm trying to implement canonical LR(1) parser, but it outputs reduce-reduce conflict on following grammar. Is this grammar not LR(1)? Or should I ...
10
votes
4answers
6k views
Open Source Grammar Checker
For an online project I'm working on, I am looking for a open source grammar checker. I have searched Google, with some good results (http://www.link.cs.cmu.edu/link/, etc), but I am wondering what ...


