JW

3,655
reputation
248 views

Registered User

name JW
member for 1 year
seen 5 hours ago
website
location US
age
Dec
18
answered Javascript: Suppress “Stop running this script?”, or how to use setTimeout ?
Dec
15
awarded  Tumbleweed
Dec
14
answered How do I link an XSD to an XML file in Eclipse?
Dec
11
comment PHP: self vs this
Excellent -- thanks.
Dec
10
revised Is there any best way to implement version control for database content?
edited title
Dec
8
asked svn log --use-merge-history shows all revisions from source branch
Dec
7
comment add key => value to an associative array in a loop?
When you need to debug something like this, put print statements inside the loop, and print out the data you're unsure of (like $tag['id']). That should tell you what's going wrong.
Dec
7
comment PHP Arrays: A good way to check if an array is associative or sequential?
Bear in mind that PHP can have non-sequential arrays with numeric indices. For example, if you do $a = array('a','b','c'); unset($a[1]);, the above function will return true.
Dec
6
awarded  Mortarboard
Dec
5
answered Alternatives to MySql Query Browser?
Nov
25
comment In JavaScript, why is [ ] preferred over new Array(); ?
Ugh, that constructor thing is awful. Never noticed that before.
Nov
25
answered PHP File Exists Always False
Nov
25
comment PHP File Exists Always False
In other words: "deprecated" doesn't mean it no longer works. It means it may no longer work in future versions, so you should avoid it.
Nov
25
answered php underscore in filename variable?
Nov
21
answered Multi-site SVN/Development workflow
Nov
20
comment PHP Array sorting
uksort in his case, since he wants a comparison function.
Nov
19
revised PHP check if $_SESSION[’text’] is text
added 538 characters in body; deleted 2 characters in body
Nov
19
answered PHP check if $_SESSION[’text’] is text
Nov
16
comment Run a PHP script every second using CLI
No, sleeping will almost certainly use less CPU than re-loading the PHP interpreter every second.
Nov
13
accepted cvs2svn and merge info
Nov
13
asked Multi-language command-line source code formatter
Nov
12
revised Finding bytes in strings with PHP’s mbstring.func_overload on
added 201 characters in body
Nov
12
comment preg_match and UTF-8 in PHP
Great...and they don't provide a mb_preg_replace.
Nov
12
revised preg_match and UTF-8 in PHP
added 38 characters in body
Nov
12
asked preg_match and UTF-8 in PHP
Nov
12
answered What programs/languages should I learn for a career in web programming/design?
Nov
8
comment Finding bytes in strings with PHP’s mbstring.func_overload on
Looked through the source. binary and 8bit seem to be the same. 7bit includes only 7-bit characters (of course), and ascii includes 0x20-0x80, plus 0, 0x09, 0x0a, and 0x0d.
Nov
8
comment Finding bytes in strings with PHP’s mbstring.func_overload on
Is binary a real encoding? I don't see it listed on php.net/manual/en/…, but it seems to work. Do you know what the differences are between binary, 8bit, and ascii?
Nov
8
asked Finding bytes in strings with PHP’s mbstring.func_overload on
Nov
7
revised What do these PHP mbstring settings do?
added 575 characters in body
Nov
7
revised What do these PHP mbstring settings do?
added 222 characters in body
Nov
7
asked What do these PHP mbstring settings do?
Oct
31
answered SVN commit fails beacuse I did not check out.
Oct
31
asked Subversion: log of a path, regardless of copies
Oct
28
comment Replacing trunk with branch in Subversion
Not yet...I ended up just doing the straight copy.
Oct
26
answered Change directory and branch within CVS repository to read-only
Oct
25
answered How do I execute a PHP shell script as an Automator action on Mac OS X
Oct
21
comment Ajax and PHP help
Your last paragraph is pretty confusing....not sure what you mean.
Oct
21
comment Can someone define what a closure is in real world language?
True, but I don't think that's the type of closure than he was looking for.
Oct
20
comment Find working directory from Ant
It was staring me in the face and I ignored it. Thanks!
Oct
20
asked Find working directory from Ant
Oct
20
accepted Ignoring Eclipse project files in SVN project
Oct
20
accepted Is there an Eclipse plugin to run system shell in the Console?
Oct
20
answered Ignoring Eclipse project files in SVN project
Oct
16
comment PHP File upload to memory
PHP does have a setting "upload_tmp_dir", which controls where the uploaded files go. So it seems like it does have some control.
Oct
16
answered JavaScript Variable Scope Confusion
Oct
15
answered help with php FOREACH loop
Oct
14
comment trying to use only one method name
Are you changing a class, or extending it?
Oct
14
answered PHP - Extension vs. Library vs. Class - when and why
Oct
14
awarded  Popular Question