User Wesley Mason - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T14:22:18Z http://stackoverflow.com/feeds/user/28147 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1299082/simple-javascript-function-with-immediate-invocation-does-not-work-why/1299100#1299100 -1 Answer by Wesley Mason for Simple JavaScript function with immediate invocation does not work... why? Wesley Mason 2009-08-19T10:49:00Z 2009-08-19T11:03:59Z <p>Edited because my answer had incorrectly read the original post:</p> <p>As your function is no longer being assigned as a lambda function to a value, invoking the function afterwards with ("Mike") won't work as there's no value to invoke the call on. As others suggested wrapping this with parenthesis to create a temporary variable will still let you invoke the anonymous function:</p> <pre><code>(function sayHello (name) { alert("Hello there " + name + "!"); })('Mike'); </code></pre> http://stackoverflow.com/questions/1188616/php-function-to-split-an-array-at-each-blank-line/1188659#1188659 0 Answer by Wesley Mason for php function to split an array at each blank line? Wesley Mason 2009-07-27T14:57:20Z 2009-07-27T14:57:20Z <p>You could do it by splitting first on the blank line and then on new lines, e.g.:</p> <pre><code>$file = $target_path; $fileData = file_get_contents($file) or die('Could not read file!'); $parts = explode("\n\n", $data); $data = array(); foreach ($parts as $part) { $data[] = explode("\n", $part); } </code></pre> <p>You could also use preg_split() in place of the first explode() with a regex to sp.lit on lines containing just whitespace (e.g. \s+)</p> http://stackoverflow.com/questions/1108002/rtf-library-phprtf-has-anyone-used-it/1120104#1120104 0 Answer by Wesley Mason for RTF Library - PHPrtf Has anyone used it? Wesley Mason 2009-07-13T15:18:35Z 2009-07-13T15:18:35Z <p>Looking at the source for PHPrtf it looks like the author has forgotten to include regular line breaks. They've included DOS style line endings, "\r\n", which creates an RTF paragraph (\par), but nothing which creates an RTF linebreak (\line).</p> <p>You have 2 options, replace your (I presume nix) line endings in the output from get_file_contents() with \r\n's, to create paragraphs in the RTF, e.g.:</p> <pre><code>str_replace("\n", "\r\n", $text); </code></pre> <p>Or you can patch rtf/Container.php, specifically inserting the following at the top of "Container::writeText()":</p> <pre><code>$text = str_replace("\n", "\n".'\line ', $text); </code></pre> http://stackoverflow.com/questions/951472/elmah-for-other-php/964735#964735 0 Answer by Wesley Mason for Elmah For other PHP Wesley Mason 2009-06-08T12:42:18Z 2009-06-08T12:42:18Z <p>I'd recommend <a href="http://pear.php.net/package/Log" rel="nofollow">PEAR::Log</a> as recommended by @Jet, along with <a href="http://uk.php.net/manual/en/function.set-error-handler.php" rel="nofollow">set_error_handler()</a> and <a href="http://uk.php.net/manual/en/function.set-exception-handler.php" rel="nofollow">set_exception_handler()</a>.</p> http://stackoverflow.com/questions/584886/fast-loading-web-pages/956421#956421 0 Answer by Wesley Mason for Fast Loading web pages Wesley Mason 2009-06-05T15:14:51Z 2009-06-05T15:14:51Z <p>A project which helps with a few of the points in Yahoo!'s guidelines (<a href="http://developer.yahoo.com/performance/rules.html" rel="nofollow">http://developer.yahoo.com/performance/rules.html</a>) is <a href="http://code.google.com/p/minify/" rel="nofollow">Minify</a> which employs minification, package bundling and conditional HTTP serving in the same space, used with good design practices can significantly reduce page loads, especially user experience (which differs from actually page loading times).</p> http://stackoverflow.com/questions/857885/formatting-php-code-within-vim/857905#857905 6 Answer by Wesley Mason for Formatting PHP Code within Vim Wesley Mason 2009-05-13T13:20:45Z 2009-05-13T13:20:45Z <p>Quick way to fix PHP indentation in vim is to visually select the lines you want to work with using shift-v, and then press equals (=) to trigger auto-formatting.</p> <p>As for other formatting issues you're probably looking at employing some regex search and replaces, such as ":%s/^M/\r/g" (that's ctrl-V ctrl-m, not caret-M) to fix line-endings</p> http://stackoverflow.com/questions/656821/problem-with-php-array/657986#657986 0 Answer by Wesley Mason for Problem with PHP Array Wesley Mason 2009-03-18T12:08:09Z 2009-03-18T12:08:09Z <p>The main reason is because unlike some languages like Python and JavaScript, <code>Array()</code> (or in fact <code>array()</code>) is not an object, but an language construct which creates an inbuilt data type. Inbuilt datatypes themselves aren't objects either, and the <code>array()</code> construct doesn't return a reference to the "object" but the actual value itself when can then be assigned to a variable.</p> http://stackoverflow.com/questions/511541/sharing-session-across-domain/511570#511570 1 Answer by Wesley Mason for Sharing session across domain Wesley Mason 2009-02-04T14:25:33Z 2009-02-04T14:25:33Z <p>You need to set the domain for your cookie to your top domain pereceded by a dot, e.g. for subdomain1.domain.com and subdomain2.domain.com, you would the domain for the session cookie to: .domain.com.</p> <p>In JBoss you should be able to override this for all the subdomains in the javax.servlet.http.Cookie class.</p> http://stackoverflow.com/questions/424454/php-multiple-occurences-of-words-within-a-string/424523#424523 2 Answer by Wesley Mason for PHP Multiple Occurences Of Words Within A String Wesley Mason 2009-01-08T14:55:50Z 2009-01-08T14:55:50Z <pre><code>&lt;?php $words = preg_split('\b', $string, PREG_SPLIT_NO_EMPTY); $wordsUnique = array_unique($words); if (count($words) != count($wordsUnique)) { echo 'Duplicate word found!'; } ?&gt; </code></pre> http://stackoverflow.com/questions/246057/how-to-debug-in-vi/377970#377970 2 Answer by Wesley Mason for How to debug in VI Wesley Mason 2008-12-18T14:20:58Z 2008-12-18T14:20:58Z <p>See the link on using xdebug with vim that someone else posted for a full debugger, but as an extra tip you can do this from vim to run syntax check on the current PHP script:</p> <pre><code>:!php -l % </code></pre> <p>I have this assigned to my F5 key by putting this in my .vimrc file (in your home(~) directory):</p> <pre><code>nmap &lt;F5&gt; :! php5 -l %&lt;CR&gt; </code></pre> http://stackoverflow.com/questions/262448/replace-non-numeric-with-empty-string/262533#262533 0 Answer by Wesley Mason for Replace non-numeric with empty string Wesley Mason 2008-11-04T17:07:07Z 2008-11-04T17:07:07Z <p>Using the Regex methods in .NET you should be able to match any non-numeric digit using \D, like so:</p> <pre><code>phoneNumber = Regex.Replace(phoneNumber, "\D", ""); </code></pre> http://stackoverflow.com/questions/222925/in-php-is-there-a-way-to-capture-the-output-of-a-php-file-into-a-variable-withou/229193#229193 1 Answer by Wesley Mason for In PHP, is there a way to capture the output of a PHP file into a variable without using output buffering? Wesley Mason 2008-10-23T10:06:28Z 2008-10-23T10:06:28Z <p>A little known feature of PHP is being able to treat an included/required file like a function call, with a return value.</p> <p>For example:</p> <pre><code>// myinclude.php $value = 'foo'; $otherValue = 'bar'; return $value . $otherValue; // index.php $output = include './myinclude.php'; echo $output; // Will echo foobar </code></pre> http://stackoverflow.com/questions/1299082/simple-javascript-function-with-immediate-invocation-does-not-work-why/1299132#1299132 Comment by Wesley Mason on Simple JavaScript function with immediate invocation does not work... why? Wesley Mason 2009-08-19T11:04:52Z 2009-08-19T11:04:52Z This doesn't answer what he actually wants to do however, which is invoke the anonymous function. See Brian's answer. http://stackoverflow.com/questions/1299082/simple-javascript-function-with-immediate-invocation-does-not-work-why/1299100#1299100 Comment by Wesley Mason on Simple JavaScript function with immediate invocation does not work... why? Wesley Mason 2009-08-19T11:02:12Z 2009-08-19T11:02:12Z Ah yes, this is correct..which won't work in this context because it's never being assigned to a value to then invoke. My bad. Will edit. http://stackoverflow.com/questions/1205757/linux-command-line-recursively-overwriting-every-file-with-a-gzipped-version/1208772#1208772 Comment by Wesley Mason on Linux Command line: recursively overwriting every file with a gzipped version? Wesley Mason 2009-07-31T11:09:08Z 2009-07-31T11:09:08Z Aha, forgot about multiple -exec calls in find, me likey http://stackoverflow.com/questions/1205757/linux-command-line-recursively-overwriting-every-file-with-a-gzipped-version/1205821#1205821 Comment by Wesley Mason on Linux Command line: recursively overwriting every file with a gzipped version? Wesley Mason 2009-07-31T10:13:31Z 2009-07-31T10:13:31Z See <a href="http://www.commandlinefu.com/commands/view/1387/backticks-are-evil" rel="nofollow">commandlinefu.com/commands/view/&hellip;</a> http://stackoverflow.com/questions/1205757/linux-command-line-recursively-overwriting-every-file-with-a-gzipped-version/1205821#1205821 Comment by Wesley Mason on Linux Command line: recursively overwriting every file with a gzipped version? Wesley Mason 2009-07-30T10:50:02Z 2009-07-30T10:50:02Z And yes I do know backticks are evil, but as I said this is just a quick hack script. http://stackoverflow.com/questions/1188616/php-function-to-split-an-array-at-each-blank-line/1188666#1188666 Comment by Wesley Mason on php function to split an array at each blank line? Wesley Mason 2009-07-27T15:02:13Z 2009-07-27T15:02:13Z Rather than doing file(), implode(), preg_split(), you can use file_get_contents() instead. http://stackoverflow.com/questions/1188616/php-function-to-split-an-array-at-each-blank-line/1188648#1188648 Comment by Wesley Mason on php function to split an array at each blank line? Wesley Mason 2009-07-27T14:55:45Z 2009-07-27T14:55:45Z Surely split() works on strings, he's talking about working on an array of strings. http://stackoverflow.com/questions/1016213/class-initiation-with-php/1016231#1016231 Comment by Wesley Mason on class initiation with php Wesley Mason 2009-06-19T14:21:59Z 2009-06-19T14:21:59Z Sometimes you want to statically retrieve next instances and the only way to do this in PHP &lt;5.3 is using a factory method such as this, or by redefining factory methods in descendants. http://stackoverflow.com/questions/985656/can-this-regular-expression-find-replace-be-optimised/985680#985680 Comment by Wesley Mason on can this regular expression find/replace be optimised? Wesley Mason 2009-06-12T08:58:19Z 2009-06-12T08:58:19Z Surely you could just use the none greedy operator in a preg, e.g. .*? http://stackoverflow.com/questions/857427/php-referer-redirect-script/857450#857450 Comment by Wesley Mason on PHP - Referer redirect script Wesley Mason 2009-05-13T13:30:59Z 2009-05-13T13:30:59Z @David I believe you are misunderstanding the mechanism of a redirect. In this case when your script sets the referrer it does it on the request to the link, it would then need to either serve that information back to the client, and thus not performing a redirect at all it would be proxying all information through itself, or it would redirect the client to the link, thus destroying the whole referrer hiding. Even if the script only partially proxied content, the referrer would still be sent for images/CSS/JS etc. http://stackoverflow.com/questions/424454/php-multiple-occurences-of-words-within-a-string/424523#424523 Comment by Wesley Mason on PHP Multiple Occurences Of Words Within A String Wesley Mason 2009-01-08T16:44:08Z 2009-01-08T16:44:08Z I used the regex to split on word boundaries as opposed to just splitting on spaces, should have made this clear.