4
votes
Hash Collision - what are the chances?
If you assume that SHA-1 does a good job, you can conclude that there's a 1 in 2^160 chance that two given messages have the same hash (since SHA-1 produces a 160-bit hash).
2^160 is a ridi …
1
vote
Finding characters in a string that occur only once
Consider using a binary number to represent your "possibles" instead, because binary operations like AND, OR, XOR tend to be much faster than string operations.
E.g. if "2" and "3" are poss …
0
votes
Create a JPEG in PHP w/o creating a file?
This can be done using the GD library and output buffering. I don't know how efficient this is compared with other methods, but it doesn't require explicit creation of files.
//$ima …
2
votes
Avoid Race Conditions in PHP on Submit: Please do not click submit more than once!
It's also important to note that PHP's default behaviour if it detects the user has "cancelled" the request (by closing the browser, pressing "stop", or perhaps pressing Submit a second time) is to …
7
votes
How does “do something OR DIE()” work in PHP?
PHP's or works like C's || (which incidentally is also supported by PHP - or just looks nicer and has diffe …
1
vote
Is there a reason I should not start with C#
Considering all the answers so far, I thought I'd look at all four languages mentioned.
While I've done a lot of development in PHP, and sadly continue to do so, I think PHP was never a gre …
2
votes
Comparing Rails vs. PHP to a non-technical audience
Assuming a one-man-team is enough for the not-too-distant future, and you're not planning to leave the company in that time, then the argument is simple:
Rails gets you a stable site in les …
0
votes
Characters per line and lines per textarea limit
Use explode("\n", $str) to break the textarea data into lines, then check the length of each line.
A similar me …
8
votes
PHP: Concatenate array element into string with ‘,’ as the separator
This is exactly what the PHP implode() function is for.
Try
$groupIDStr = implode(',', $groupViewID);
…
4
votes
Best method for converting a PHP array to javascript
A more space-efficient way of encoding Javascript data structures is called JSON.
As of PHP 5.2.0, you can use the following function to sp …
0
votes
PHP Login System
Sounds OK; you may want to think about setting an expiry time (so if someone walks away and leaves the browser open they're not in too much danger).
…
2
votes
Encoding problem (UTF-8) in PHP
You should always set your editor to the same encoding that the generated HTML instructs the browser to use. If the HTML page is intended to be interpreted as UTF-8, then set your text edi …
1
vote
Automatically align and resize 3 images into a small image with PHP?
The easiest way is just to always fit the face/hair/beard in the same area of the image. Then just crop that area out.
If you must, you can store extra data for each image specifying a rect …
1
vote
breaking up strings with explode and foreach
Try
$tags = explode(',' $string);
foreach($tags as $key) {
echo '"' . $key . '"<br/>';
}
My guess is that you are getting a space before ARISE and SDG …
0
votes
Best way to generate a 2 char alphanumeric string?
Based on Jani's answer:
join('', array_rand(array_merge(range('a', 'z'), range('0', '9')), 2))
…
