Tagged Questions
0
votes
0answers
20 views
Tokenize not working on DOMXPath query
I'm trying to Tokenize (explode) a string result via a DOMXPath.
$file = new DOMDocument;
...
1
vote
2answers
56 views
How do you retrieve the first n lines of a file? (php)
$fileName = file ("gstbook.txt");
$rows = count ($fileName);
// $Char is the string that will be added to the file.
if ($Char != '')
{
$Char = str_replace ("\n","<br>",$Char);
$Char = ...
1
vote
1answer
71 views
Tokenize string by each character sequence of each word
I feel like this could have been asked, but titled differently therefore I cannot find a exact duplicate.
Whats the easiest way to tokenize a string so that each word is tokenized, as well as each ...
4
votes
1answer
163 views
How to build a tokenizer in PHP?
I'm building a site to learn basic programming, I'm going to use a pseudolanguage in which users can submit their code and I need to interpret it. However I'm not sure how to build a tokenizer in PHP.
...
5
votes
4answers
276 views
How do I find all the classes used in a PHP file?
I am trying to use the tokenizer to scan a file to find all the defined classes, anything they extend, any created instances, and anytime they were statically invoked.
<?php
$tokens = ...
-2
votes
3answers
51 views
Break an integer and insert into an array in specific order [closed]
I have a variable that stores a number, let's say $num = (double)758341. I wan to break the $num and then insert into an array in ascending or descending order. I am just confused how a number will be ...
3
votes
1answer
59 views
How can I statically analyze php scripts to detect global variable usage
I would like to process a folder and count the number of times each global variable
is used. I do have a list of the globals, but it would be way cooler if the script
detected and output both the ...
0
votes
1answer
94 views
PHP Tokenizer multiline issue
I am using token_get_all to develop a tool. I am stuck in a situation where I have following query in php code
$sql = "UPDATE `key_values` SET
`Value_Content` = '" . ...
7
votes
4answers
142 views
How get each character from a word with special encoding
I need to get an array with all the characters from a word, but the word has letters with special encoding like á, when I execute the follow code:
$word = 'withá';
$word_arr = array();
for ...
0
votes
1answer
170 views
token_get_all() function not working properly
I want to count the curly brackets in a PHP source code, so i can eventually find the end of a method/function in the given source code.
I was adviced to use the token_get_all() function for this ...
1
vote
2answers
194 views
How to find scope level with token_get_all()?
I'm using token_get_all() to do some static analysis on a php project.
How do I find the scope level for stuff like:
Finding if the current T_FUNCTION is still inside the T_CLASS being parsed
...
0
votes
1answer
281 views
jquery tokeninput with PHP
I am using Jquery Tokeninput in my project to display some numbers in a textarea. I have a hidden input field in which I save the JSON string containing the numbers.
The JSON looks like
patents = ...
2
votes
2answers
240 views
Matching (pairing) tokens (eg, brackets or quotes)
In short, I need a function which attempts a rudimentary code fix by adding brackets/quotes were necessary, for parsing purposes. That is, the resulting code is not expected to be runnable.
Let's see ...
3
votes
3answers
765 views
How to implement XSLT tokenize function?
It seems like EXSLT tokenize function is not available with PHP XSLTProcessor (XSLT 1.0).
I tried to implement it in pure XSL but I can't make it work :
<xsl:stylesheet
version="1.0"
...
2
votes
0answers
449 views
Matching all tokens in a Multivalued Field in Solr
I'm trying an approach to resolve a search requirement by tokenizing a serial string into individual terms inside of a multivalued field.
basically, each document may contain multiple values for ...
0
votes
1answer
163 views
PHP json_encode token_get_all
I want to return the PHP token_get_all() function as JSON.
I also want token_get_all to pass the token through the token_name() function to get its name.
I have tried various different methods but ...
3
votes
2answers
299 views
Best approach to detect first and last name from text blob
I'm working on a program that does OCR on a US business card and tries to return information like first name, last name, etc. The challenge is how to do that.
So far I've built the following data ...
3
votes
3answers
153 views
Link a negative in a sentence to the following word by an undercore
I'm trying to count the number of positive reviews on a website. Consider the following strings:
$str_1 = "This is great";
$str_2 = "This is not great after all";
$str_3 = "That isn't good and I will ...
0
votes
1answer
148 views
php preg_replace_call : extract specific values for later reinsertion
For the sake of brevity...
I want to take items out of a string, put them into a separate array, replace the values extracted from the string with ID'd tokens, parse the string, then put the extracted ...
0
votes
2answers
92 views
fixing a php tokenizing pattern
i have a Perl script which tokenize a string
@s=split /([^a-zA-Z \t\-\'\,\.]+)/, $_[0]; # tokenized with separators
so if i have a string $s="The large [[bear]] is dangerous."
it will return ...
2
votes
1answer
339 views
PHP, Tokenizer, find all the arguments of the function
Help me find all the arguments of the function "funcname" using the function token_get_all() in the source code. It sounds simple, but there are many special options, such as arrays as parameters or ...
4
votes
1answer
217 views
Catching errors thrown by token_get_all (Tokenizer)
PHPs token_get_all function (which allows converting a PHP source code into tokens) can throw two errors: One if an unterminated multiline comment is encountered, the other if an unexpected char is ...
28
votes
1answer
1k views
PHP namespace removal / mapping and rewriting identifiers
I'm attempting to automate the removal of namespaces from a PHP class collection to make them PHP 5.2 compatible. (Shared hosting providers do not fancy rogue PHP 5.3 installations. No idea why. Also ...
1
vote
3answers
439 views
How to get the function body out of a string containing a function?
Heres the string:
<?php
$string = '//ps: this placeholder text to demonstrate issues..
function go($url) {
header("Location: {$url}");
exit();
}
function some() {
/* this is the function body ...
9
votes
6answers
2k views
What are some practical uses of PHP tokenizer?
What are practical and day-to-day usage examples of PHP Tokenizer ?
Has anyone used this?
1
vote
1answer
898 views
String tokenizer in php
I've a strange problem that I faced recently.
I've the following code to tokenize string in php:
$token = strtok($string, "#");
while ($token != false)
{
echo $token;
$token = strtok("#");
...
1
vote
1answer
131 views
Bi-directional Text Parsing Recommendations
I'm looking at the feasability of implementing a bi-directional text parsing framework to allow formatted text to be processed using a combination of common paradigms such as Markdown, BBCode, ...
3
votes
3answers
721 views
Generating PHP code (from Parser Tokens)
Is there any available solution for (re-)generating PHP code from the Parser Tokens returned by token_get_all? Other solutions for generating PHP code are welcome as well, preferably with the ...
0
votes
0answers
242 views
How to use tokenized autocomplete on multiple fields without conflicting
I need to run this autocomplete script on multiple fields in a form.
I created separate js and php files for each field and it seems to pull the values from the php file ok, when you don't have a ...
2
votes
4answers
478 views
PHP Tokens From a String
Let's say you have a string that looks like this:
token1 token2 tok3
And you want to get all of the tokens (specifically the strings between the spaces), AND ALSO their position (offset) and length).
...
2
votes
3answers
1k views
Is there a Javascript lexer / tokenizer (in PHP)?
I've seen a couple of Python Javascript tokenizers and a cryptic document on Mozilla.org about a Javascript Lexer but can't find any Javascript tokenizers for PHP specifically. Are there any?
Thanks
5
votes
1answer
796 views
Parsing/Tokenizing a String Containing a SQL Command
Are there any open source libraries (any language, python/PHP preferred) that will tokenize/parse an ANSI SQL string into its various components?
That is, if I had the following string
SELECT ...
1
vote
2answers
385 views
token_get_all whitespaces behaviour
I don't know if someone can help me, but i'll ask anyway. I'm creating a function like the php token_get_all written in javascript. This function should "tokenize" a given php code, but i have some ...
14
votes
2answers
2k views
Word break in languages without spaces between words (e.g., Asian)?
I'd like to make MySQL full text search work with Japanese and Chinese text, as well as any other language. The problem is that these languages and probably others do not normally have white space ...
0
votes
2answers
146 views
register_printf_function in PHP
I need to let the user specify a custom format for a function which uses vsprintf, and since PHP doesn't have glibc' register_printf_function(), I'll have to do it with PCRE.
My question is, what ...
3
votes
4answers
1k views
Parsing Classes, Functions and Arguments in PHP
I want to create a function which receives a single argument that holds the path to a PHP file and then parses the given file and returns something like this:
class NameOfTheClass
function ...
1
vote
1answer
740 views
What php html tokenizer's can I use?
I need to process html submitted in my web application and don't want to munge the whole thing with regular expressions. What tokenizer approach and/or software should I take?
1
vote
6answers
2k views
string slicing, php
is there a way to slice a string lets say i have this variable
$output=Country=UNITED STATES (US) &City=Scottsdale, AZ &Latitude=33.686 &Longitude=-111.87
i want to slice it in a way i ...
3
votes
6answers
1k views
Implementing keyword comparison scheme (reverse search)
I have a constantly growing database of keywords. I need to parse incoming text inputs (articles, feeds etc) and find which keywords from the database are present in the text. The database of ...

