troelskn

10,601
reputation
567 views

Registered User

name troelskn
member for 1 year
seen 6 mins ago
website
location Copenhagen, Denmark
age 32

I write software for a living. And for fun.

25m
answered A tool to find missing docblocks
2h
answered How to get cleartool diff to return to command line while diff viewer is still open?
5h
answered PHPUnit - test MVC controller with $_POST variable
6h
comment MVC pattern and $_POST variables
Sounds like a really bad suggestion.
9h
comment Looking for a new lightweight php editor for windows
"best" and "lightweight" are both highly subjective concepts. You can't expect a reasonable answer to this question.
1d
comment How do I parse partial HTML?
Unless there are nested div tags of course. Regular expressions are not for parsing html.
1d
revised How do I parse partial HTML?
added 208 characters in body
1d
answered How do I parse partial HTML?
1d
answered PHP Equivalent of Master page in ASP.NET
1d
comment Check if function has been called yet
Generally, a global state variable would probably be inappropriate. An object member variable would be better.
1d
revised php explode function
changed regexp so that quotes aren't included in the result.
1d
revised php explode function
added 417 characters in body; edited body; deleted 12 characters in body
1d
answered php explode function
1d
comment How to strip unicode chars (LEFT_TO_RIGHT_MARK) from a string in php
Which encoding is the string in?
2d
answered SOAP calls using EventMachine
Dec
16
comment How to get the value after the hash in “somepage.php#name”?
He means impossible.
Dec
16
comment How do I preg_match for words in Hebrew.
Where is the \p{Hebrew} shortcut described? I've never seen that before.
Dec
16
answered PHP 301 Redirect Idea
Dec
16
comment Are Ioncube encoded files decodable by any chance?
However, PHP byte code is a lot ore readable than say assembler code, generated from a binary.
Dec
16
answered Does anyone know of any standards for the classification of software?
Dec
15
answered is it good programing practice to put code statements in braces?
Dec
15
answered Direction of the association arrow in UML class diagrams
Dec
14
answered ServiceLocator and the Open/Closed Principle
Dec
11
revised encode string to utf8
edited tags
Dec
11
comment encode string to utf8
That is not utf-8 encoding. You mean urlencoding.
Dec
10
answered Persistent variables on a page in PHP
Dec
10
comment Relational Data to Flat File
In that case, you can use a generic scripting language, such as Python or similar. It's probably something like 20 lines of code.
Dec
10
answered Relational Data to Flat File
Dec
10
comment Pass session data onto URL
This kind of information should be part of the query-string ($_GET) - not the path. I absolutely agree on that, Daniel. Hopefully the example I just added makes that clearer.
Dec
10
revised Pass session data onto URL
added 859 characters in body; added 85 characters in body
Dec
10
answered Pass session data onto URL
Dec
8
comment What does & in &$data do?
Note: References in PHP have some similarities to pointers in C, but they are not the same thing. In particular, there is generally no performance gain in using references. Because of the odd side effects of references, they should rarely be used.
Dec
8
comment How to profile SQL queries in MVC framework?
What does this have to do with MVC?
Dec
7
comment How do I check in PHP that I’m in a static context (or not)?
As long as $this isn't an instance of Foo, but I guess that's a bit contrived. Still, having to ask the question in the first place is a red flag to me.
Dec
7
comment simple PHP $_GET sanitization question
To be really super sure, use this instead: preg_replace('/.*/', '', $input);. That'll take care of everything. Promise.
Dec
7
answered How do I check in PHP that I’m in a static context (or not)?
Dec
7
answered Last “&” problem with “echo” in php?
Dec
7
comment What’s the difference between ‘eq’ vs ‘==’ in PHP?
"binary comparison"?
Dec
6
awarded  Mortarboard
Dec
6
answered How to implement a personalized event stream?
Dec
3
accepted PHP - Calling a static function from an extended class
Dec
3
answered PHP - Calling a static function from an extended class
Dec
2
answered can i post data without using submit button
Dec
1
answered php cookie path “/” doesn’t work
Dec
1
answered Program capable of opening a large XML file in windows
Dec
1
comment Project conversion from ISO 8859-1 to UTF-8
@BalusC That is not entirely true. They both have a common subset, known as ascii, but half of iso-8859-1 is encoded different in utf-8.
Nov
30
accepted Is there a well-established naming convention for PHP namespaces?
Nov
30
comment Is there a well-established naming convention for PHP namespaces?
Uhm .. but the question was about namespaces.
Nov
30
comment Is there a well-established naming convention for PHP namespaces?
Doesn't say anything about namespaces though.
Nov
30
answered Is there a well-established naming convention for PHP namespaces?