1,923 reputation
18
bio website
location
age
visits member for 10 months
seen 2 hours ago
stats profile views 40

21h
comment PHP 5.4.4 bug with return of assoc array
@deceze I agree, it does not explain, but my point is, making it static wouldn't fix that. In theory the provided method should work.
1d
comment PHP 5.4.4 bug with return of assoc array
@deceze f.ex. ideone.com/65qmI8 - or in the original question? Yes, logically, that could be static.
1d
comment PHP: write in php://input
php://stdin is read-only, whereas php://stdout and php://stderr are write-only. php.net/manual/en/wrappers.php.php
1d
comment PHP 5.4.4 bug with return of assoc array
For those, who is wondering why this works with simpler (true/false) return value: the scope resolution operator :: works different inside a class (this is a private method, can only being called inside the class) - just think of parent:: & static:: calls. php.net/manual/en/language.oop5.paamayim-nekudotayim.php
1d
comment ë versus ë versus ë
In theory? Yes. But the unicode range is really wide. I think that is not a real option.
2d
comment ë versus ë versus ë
I'm afraid, there is no other options. A simple converting wouldn't work, because the target encoding is the same as the source encoding. You could convert to other unicode charset (f.ex. utf-16) and then re-encode as utf-8, but i think the results would be identical to the source.
May
19
answered ë versus ë versus ë
May
19
comment ë versus ë versus ë
You should dump & write the hex codes, as ë and ë are completely useless. (they are encoded multiple times)
May
16
answered lastInsertId() not working on a PDO object, in an insert operation
May
16
answered Alternative to using PHP-GMP to populate two column table
May
16
comment Echo all results from sql join when using group by
As I wrote URLs are special. alt can contain any characters, so we can't choose a separator for them (as if one alt contains the separator, that alt would be splitted up, and you will get more alts than urls).
May
16
comment Most efficient filing
Are there any other rules? F.ex. by "most efficient", you mean the solution, which consist of the least number of rooms?
May
16
comment PHP passing variable amount of parameters to an anonymous function
BTW your function body isn't using $arg1, $arg2, nor $arg3 - so won't work after you calling it right. Have you using at least PHP 5.3+? Have you considered using real lambda functions? php.net/manual/en/functions.anonymous.php
May
16
comment PHP passing variable amount of parameters to an anonymous function
2nd error: '$newfunc' is not a valid callback, while $newfunc is.
May
16
answered Echo all results from sql join when using group by
May
16
comment Echo all results from sql join when using group by
You wrote order by instead of group by in your example query.
May
13
answered How to compare two DATETIMEs from MySQL
May
13
comment UTF-8 BOM added to downloaded file
Note that the BOM could be also in the included files too. Have you done a BOM search yet? stackoverflow.com/questions/204765/…
May
13
answered UTF-8 BOM added to downloaded file
May
13
comment UTF-8 BOM added to downloaded file
the last 3 characters are stripped, because you send the correct Content-Length header (without the bom) & the browser cuts everything after reached it.