6
votes
6answers
835 views
PHP: Does sleep time count for execution time limit?
Hello!
I have two questions concerning the sleep() function in PHP:
1) Does the sleep time affect the maximum execution time limit of my PHP scripts? Sometimes, PHP shows the message "maxim …
2
votes
3answers
375 views
[PHP] How to combine words of a sentence to composed terms?
Hello!
I have a sentence, for example
John Doe moved to New York last year.
Now I split the sentence into the single words and I get:
…
3
votes
5answers
430 views
Split a text into single words
Hello!
I would like to split a text into single words using PHP. Do you have any idea how to achieve this?
My approach:
function tokenizer($text) {
$text = trim( …
3
votes
6answers
444 views
PHP/MySQL: Select locations close to a given location from DB
Hello!
In PHP, I have the following code for calculating the distance between two locations:
<?php
function distance($lat1, $long1, $lat2, $long2) {
// DEGREE TO RADI …
1
vote
2answers
176 views
Best DB (MySQL) structure: Articles which contain favored tags
Hello!
I've built a news site:
- The articles are shown on the front page ordered by date. The newest one first.
- The news are in the table "news" with the fields "id", "title", "text" a …
1
vote
5answers
367 views
Compare lots of texts (clustering) with a matrix
Hello!
I have the following PHP function to calculate the relation between to texts:
function check($terms_in_article1, $terms_in_article2) {
$length1 = count($terms_in_ …
11
votes
8answers
3k views
PHP: Detect encoding and make everything UTF-8
Hello!
I'm reading out lots of texts from various RSS feeds and inserting them into my database.
Of course, there are several different character encodings used in the feeds, e.g. U …
3
votes
6answers
277 views
Generate random player strengths in a pyramid structure (PHP)
Hello!
For an online game (MMORPG) I want to create characters (players) with random strength values. The stronger the characters are, the less should exist of this sort.
Example: …
2
votes
2answers
230 views
Bag of words model: 2 PHP functions, same results: Why?
Hello!
I have two PHP functions to calculate the relation between two texts. They both use the bag of words model but check2() is much faster. Anyway, both functions give the same results. …
6
votes
4answers
821 views
Cosine similarity vs Hamming distance
Hello!
To compute the similarity between two documents, I create a feature vector containing the term frequencies. But then, for the next step, I can't decide between " …
3
votes
3answers
178 views
Adjust algorithm for generating random strength values
A few days ago, you helped me to find out an algorithm for generating random strength …
5
votes
6answers
738 views
Singular Value Decomposition (SVD) in PHP
Hello!
I would like to implement Singular Value Decomposition (SVD) in PHP. I know that there are several external libraries which could do this for me. But I have two questions concerning …
0
votes
1answer
317 views
PHP: Detect invalid characters in a text
Hello!
I would like to parse user inputs with PHP. I need a function which tells me if there are invalid characters in the text or not. My draft looks as follows:
<?php
f …
0
votes
2answers
109 views
PHP: 2 strings - which one is UTF-8 and which one not?
Hello!
I have a database with lots of strings. Some of them are correctly UTF-8 encoded, some of them not. Therefore, I've set up a script which selects 100 strings from the db. The followi …
8
votes
5answers
431 views
PHP: intval() equivalent for numbers >= 2147483647
Hello!
In PHP 5, I use intval() whenever I get numbers as an input. This way, I want to ensure that I get no strings or floating numbers. My input numbers should all be in whole numbers. Bu …
