4
votes
How do I match a square bracket literal using RegEx?
Works flawlessly:
<?php
$hay = "ab]cd";
echo eregi_replace("\]", "e", $hay);
?>
Output:
abecd
…
10
votes
Collect Lowest Numbers Algorithm
Sort the array and use the ten first/last entries.
Honestly: sorting an array with a thousand entries costs less time than it takes you to blink.
…
12
votes
Optimizing PHP string concatenation
Creating a small (but still sucking :) benchmark and running it yields the following results:
0.0022029876709
0.00211095809937
0.00213599205017
0.00551700592041
Th …
8
votes
5
votes
Make PHP code as small as possible while not reducing performance?
Don’t. Please don’t. Let me emphasize that for you: Please don’t. There’s already way too much unreadable code around that is unreadable for exactly the …
2
votes
diffrent string formating types in php
They are in length described in the manual page for sprintf.
…
1
vote
Is there a way to create an uncompressed zip from PHP?
According to php.net’s bugtracker (and bug #41243) this functionality is not available in the built-in zip utilities. For now you h …
2
votes
PHP: Converting from UTF-8 HTML
test1 does not fail, its answer is correct. The strings you compare are not the same. “ ” is not decoded to a space (0x20). It’s a non-breaking space cha …
7
votes
How vulnerable is my code to SQL injection?
It’s very vulnerable. If you know about all the nifty stuff like mysql_real_escape_string why do you waste your time and ask this question? You should be all over that code, fixing it. …
0
votes
Server/Client Verification?
The usual approach for a problem like this is the inclusion of an HMAC. It allows integrity checking and sender authentication by the …
-1
votes
0
votes
How can I get rid of this PHP notice?
Check for it being set (using isset).
Initialize it with some value.
…
1
vote
How to use GNUPG and Crypt_GPG
The examples show you how to specify the passphrase:
$gpg->addSignKey('test@e …
0
votes
Going from unsalted to salted MD5 passwords
Dynamically re-encrypt the passwords when the users log in the next time, i.e. first check whether it’s correct, afterwards encrypt it with a salt and store it again.
…
0
votes
PHP readdir( ) returns “ . “ and “ .. “ entries
No, those files belong to a directory and readdir should thus return them. I’d consider every other behaviour to be broken.
Anyway, just skip them:
while (false …
