User Peter Bailey - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T01:10:35Z http://stackoverflow.com/feeds/user/8815 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1835741/javascript-caching-question/1835766#1835766 0 Answer by Peter Bailey for Javascript caching question Peter Bailey 2009-12-02T21:00:00Z 2009-12-02T21:00:00Z <p>Most static resources are cache-able by a browser. Just put your data in a .txt, .dat, .xml or whatever (even a .js) and load it with your javascript via AJAX.</p> http://stackoverflow.com/questions/1835309/auto-increment-with-a-string-of-numbers-and-letters/1835591#1835591 0 Answer by Peter Bailey for auto increment with a string of numbers and letters Peter Bailey 2009-12-02T20:31:40Z 2009-12-02T20:31:40Z <p>MySQL supports <a href="http://dev.mysql.com/doc/refman/5.0/en/miscellaneous-functions.html#function%5Fuuid" rel="nofollow">UUIDs</a>. But you'll want to employ a trigger to get this working automatically.</p> <pre><code>CREATE TABLE `tester` ( `tester_id` INTEGER UNSIGNED NOT NULL AUTO_INCREMENT, `uuid` VARCHAR(64), `foo` VARCHAR(45), PRIMARY KEY (`tester_id`), INDEX `index_uuid`(`uuid`) ) ENGINE = InnoDB; delimiter | CREATE TRIGGER tester_uuid BEFORE INSERT ON `tester` FOR EACH ROW BEGIN SET NEW.uuid = UUID(); END; | delimiter; INSERT INTO tester (foo) VALUES('bar'), ('baz'); SELECT * FROM tester; </code></pre> http://stackoverflow.com/questions/1835270/php-ide-with-design-view/1835318#1835318 1 Answer by Peter Bailey for PHP IDE with design view? Peter Bailey 2009-12-02T19:44:31Z 2009-12-02T19:44:31Z <p><a href="http://www.zend.com/products/studio/" rel="nofollow">Zend Studio</a> does, but it's not cheap for personal use.</p> http://stackoverflow.com/questions/1834480/inside-function-variables-to-be-used-in-includes-in-php/1834651#1834651 0 Answer by Peter Bailey for Inside function variables to be used in includes in PHP Peter Bailey 2009-12-02T17:52:34Z 2009-12-02T17:52:34Z <p>You don't have to do anything. Usage of <code>include()</code> (and it's siblings) is analogous to copy-pasting the code from the included file into the including file at the spot where include() is called.</p> <p>Simple example</p> <p><strong>test.php</strong></p> <pre><code>&lt;?php $foo = 'bar'; function test() { $bar = 'baz'; include 'test2.php'; } test(); </code></pre> <p><strong>test2.php</strong></p> <pre><code>&lt;?php echo '&lt;pre&gt;', print_r( get_defined_vars(), 1 ), '&lt;/pre&gt;'; </code></pre> <p>Again, this is analogous to the combined</p> <pre><code>&lt;?php $foo = 'bar'; function test() { $bar = 'baz'; echo '&lt;pre&gt;', print_r( get_defined_vars(), 1 ), '&lt;/pre&gt;'; } test(); </code></pre> http://stackoverflow.com/questions/1821517/how-can-i-controll-while-loop-into-another-while-loop/1821647#1821647 1 Answer by Peter Bailey for how can i controll while loop into another while loop Peter Bailey 2009-11-30T18:48:13Z 2009-11-30T18:48:13Z <p>I'm not sure I 100% understand your question - it's a little unclear.</p> <p>It's possible you could solve this in the query with a GROUP BY clause</p> <pre><code>$sql_2 = mysql_query("SELECT id FROM secondtable WHERE id != $id GROUP BY id"); </code></pre> <p>But that would only work if you need <em>just</em> <code>secondtable.id</code> and not any of the other columns.</p> <p>When you say "number of time allowed by me" do you mean some sort of arbitrary value? If so, then you need to use a different loop mechanism, such as Greg B's solution.</p> http://stackoverflow.com/questions/1799020/mysql-resetting-the-index-count-to-0/1799111#1799111 1 Answer by Peter Bailey for MySQL Resetting the index count to 0 Peter Bailey 2009-11-25T18:43:39Z 2009-11-25T18:43:39Z <p>You can also use the TRUNCATE statement. It will remove all the data and reset the auto increment.</p> <pre><code>TRUNCATE TABLE [TableName]; </code></pre> <p>Is the same as</p> <pre><code>DELETE * FROM [TableName]; ALTER TABLE [TableName] AUTO_INCREMENT = 0; </code></pre> http://stackoverflow.com/questions/1784114/simple-php-script-to-retrieve-google-keyword-search-completion/1784191#1784191 2 Answer by Peter Bailey for simple php script to retrieve google keyword search completion Peter Bailey 2009-11-23T16:15:35Z 2009-11-23T16:15:35Z <p>You don't need to do anything nearly that complicated.</p> <p>Just use their search API</p> <pre><code>$search = 'google keyword search'; $results = json_decode( file_get_contents( 'http://ajax.googleapis.com/ajax/services/search/web?v=1.0&amp;q=' . urlencode( $search ) ) ); echo $results-&gt;responseData-&gt;cursor-&gt;estimatedResultCount; </code></pre> http://stackoverflow.com/questions/1766162/how-to-remove-any-html-tags-with-nothing-but-optional-whitespace-between-them/1766177#1766177 5 Answer by Peter Bailey for How to remove any html tags with nothing but optional whitespace between them Peter Bailey 2009-11-19T20:08:28Z 2009-11-19T20:08:28Z <p>It's funny how this topic keeps coming up.</p> <p><a href="http://www.codinghorror.com/blog/archives/001311.html" rel="nofollow">Don't go with regex</a>. Try <a href="http://php.net/manual/en/book.tidy.php" rel="nofollow">HTML Tidy</a> instead.</p> http://stackoverflow.com/questions/1765999/passing-parameters-using-a-zend-framework-redirect-without-appending-to-url/1766026#1766026 2 Answer by Peter Bailey for Passing parameters using a Zend Framework redirect without appending to URL Peter Bailey 2009-11-19T19:45:39Z 2009-11-19T19:45:39Z <p>I'm not super familiar with ZF's controller system so I can't give you a bespoke recommendation.</p> <p>Is using a session value out of the question? Another popular framework, symfony, uses what they call "flash" variables which are session values that survive for only 1 more request.</p> <p>I'm sure you could do something similar with ZF.</p> http://stackoverflow.com/questions/1764965/facebook-app-shows-a-blank-page/1765034#1765034 1 Answer by Peter Bailey for Facebook app shows a blank page Peter Bailey 2009-11-19T17:21:56Z 2009-11-19T17:21:56Z <p>Two things that jump out at me</p> <p>1) Enable error reporting to get a handle on what's really happening </p> <pre><code>ini_set( 'display_errors', 1 ); error_reporting( E_ALL ); </code></pre> <p>2) The api_key and app_secret values are strings, not integers. </p> <pre><code>$facebook = new Facebook("1a3c459414c9cacad4b250af86092412","6253dc1b7573dc870b97838d9f3bf39a"); </code></pre> http://stackoverflow.com/questions/1759137/domelement-cloning-and-appending-wrong-document-error 0 DOMElement cloning and appending: 'Wrong Document Error' Peter Bailey 2009-11-18T21:16:08Z 2009-11-18T21:24:13Z <p>There's something I don't fully understand about node cloning with the PHP's DOM api. Here's a sample file that quickly duplicates the issue I'm coming across.</p> <pre><code>$doc = new DOMDocument( '1.0', 'UTF-8' ); $root = $doc-&gt;createElement( 'root' ); // This doesn't work either $root = new DOMElement( 'root' ); $doc-&gt;appendChild( $root ); $doc2 = new DOMDocument( '1.0', 'UTF-8' ); $root2 = $doc2-&gt;createElement( 'root2' ); $doc2-&gt;appendChild( $root2 ); // Here comes the error $root2-&gt;appendChild( $root-&gt;cloneNode() ); </code></pre> <p>When you run this little snippet an exception is thrown</p> <blockquote> <p>Fatal error: Uncaught exception 'DOMException' with message 'Wrong Document Error'</p> </blockquote> <p>Can I not grab a node from a document, clone it, and then append it to another document?</p> http://stackoverflow.com/questions/1751225/javascript-string-assignment-operators/1751237#1751237 1 Answer by Peter Bailey for Javascript String Assignment Operators Peter Bailey 2009-11-17T19:38:32Z 2009-11-17T19:38:32Z <p>That's because the minus sign is not a valid String operator, whereas the plus sign is overloaded to handle both Numbers (addition operator) and Strings (concatenation operator).</p> <p>What results were you hoping to get from this?</p> http://stackoverflow.com/questions/1751147/how-to-retain-context-across-an-ajax-call/1751184#1751184 1 Answer by Peter Bailey for How to retain context across an Ajax call Peter Bailey 2009-11-17T19:28:34Z 2009-11-17T19:28:34Z <p>With a closure!</p> <pre><code>$(document).ready(function(){ $(".divClass").each( function(e) { $(this).attr('divValue', $('p.pClass1', this).text()); $('p.pClass1', this).text('?'); $(this).click(function(e) { e.preventDefault(); // Store 'this' locally so it can be closed // by the function scope below var self = this; $.ajax({ type: "POST", url: "ajax.php", data: "val=" + $(this).attr('divValue'), success: function(msg) { myData = JSON.parse(msg); // Now used your closed variable here $('p.pClass1', self).html(myData.results[0]); // problem exists here } }); }); } ); }); </code></pre> http://stackoverflow.com/questions/1750214/can-i-use-js-encryption-instead-of-ssl-for-credit-card-payments/1750280#1750280 7 Answer by Peter Bailey for Can I use JS encryption instead of SSL for credit card payments? Peter Bailey 2009-11-17T17:01:00Z 2009-11-17T17:01:00Z <p>The potential legal trouble you could get in from this is <em>way</em> not worth avoiding the cost of SSL.</p> http://stackoverflow.com/questions/1744872/cheat-prevention-for-browser-based-xmlhttp-js-perl-php-game/1745027#1745027 1 Answer by Peter Bailey for cheat prevention for browser based xmlhttp/js/perl/php game Peter Bailey 2009-11-16T21:40:01Z 2009-11-16T21:40:01Z <p>A few things to note here.</p> <p>First, your server requests for something like this should be POST, not GET. Only GET requests should be idempotent, and not doing so is actually <a href="http://www.w3.org/2001/tag/doc/whenToUseGet.html" rel="nofollow">a violation of the HTTP specification</a>.</p> <p>Secondly, what you're looking at here is the classic <strong>Client Trust Problem</strong>. You <em>have</em> to trust the client to send scores or other game-interval information to the server, but you <em>don't</em> want the client to send illegitimate data. Preventing disallowed actions is easy - but preventing foul-play data in an <em>allowed</em> action is much more problematic.</p> <p>Ben S makes a great point about how you design the communication protocols between a client and a server like this. Allowing point values to be sent as trusted data is generally going to be a bad idea. It's preferable to indicate that an action took place, and let the server figoure out how many points should be assigned, if at all. But sometimes you can't get around that. Consider the scenario of a racing game. The client <em>has</em> to send the user's time and it can't be abstracted away into some other call like "completedLevelFour". So what do you do now?</p> <p>The token approach that Ahmet and Dean suggest is sound - but it's not perfect. Firstly, the token <em>still</em> has to be transmitted to the client, which means it's discoverable by the potential attacker and could be used maliciously. Also, what if your game API needs to be stateless? That means session-based token authentication is out. And now you get into the deep, dark bowels of the Client Trust Problem.</p> <p>There's very little you can do make it 100% foolproof. But you can make it <em>very inconvenient</em> to cheat. Consider Facebook's security model (every API request is signed). This is pretty good and requires the attacker to actually dig into your client side code before they can figure out how to spoof a reqeust.</p> <p>Another approach is server replay. Like for a racing game, instead of just having a "time" value sent to the server, have checkpoints that also record time and send them all. Establish realistic minimums for each interval and verify on the server that all this data is within the established bounds.</p> <p>Good luck!</p> http://stackoverflow.com/questions/1744473/using-utf-8-charset-with-php-are-mb-functions-required/1744587#1744587 4 Answer by Peter Bailey for Using UTF-8 charset with PHP - are mb functions required? Peter Bailey 2009-11-16T20:17:10Z 2009-11-16T20:17:10Z <p>They aren't "necessary" unless you're using any of the <a href="http://us3.php.net/manual/en/mbstring.overload.php" rel="nofollow">functions they replace</a> (and it's likely that you <em>are</em> using at least one of these) or otherwise explicitly need a feature of the extension such as <a href="http://us3.php.net/manual/en/mbstring.http.php" rel="nofollow">HTTP handling</a>.</p> <p>When working towards UTF-8 compliance, I always fall back to the <a href="http://developer.loftdigital.com/blog/php-utf-8-cheatsheet" rel="nofollow">PHP UTF-8 Cheatsheet</a> with one addition: PCRE patterns need to be updated to use the <code>u</code> modifier.</p> http://stackoverflow.com/questions/1744128/foreach-loops-stdclass-objects/1744153#1744153 1 Answer by Peter Bailey for foreach loops & stdclass objects Peter Bailey 2009-11-16T19:02:42Z 2009-11-16T19:58:23Z <p>I think this is what you want.</p> <p>EDIT</p> <p>Updated based on some notes in <a href="http://us2.php.net/extract" rel="nofollow">the documentation</a>. Specifically, these two</p> <blockquote> <p>a numerically indexed array will not produce results unless you use EXTR_PREFIX_ALL or EXTR_PREFIX_INVALID.</p> <p>Prefixes are automatically separated from the array key by an underscore character.</p> </blockquote> <pre><code>echo extract( $results-&gt;out-&gt;transactions-&gt;RealTimeCommissionDataV2, EXTR_PREFIX_ALL, 'websiteId' ); // test the extract print_r( $websiteId_0 ); </code></pre> http://stackoverflow.com/questions/1743023/how-to-handle-facebooks-new-uid-sizes/1743052#1743052 1 Answer by Peter Bailey for How to handle Facebooks new UID sizes? Peter Bailey 2009-11-16T15:50:46Z 2009-11-16T15:50:46Z <p>I'm using BIGINT UNSIGNED for a couple applications and it works just fine.</p> http://stackoverflow.com/questions/1732378/using-the-back-button-to-revert-to-the-previous-state-of-the-page/1732401#1732401 3 Answer by Peter Bailey for Using the BACK button to revert to the previous state of the page Peter Bailey 2009-11-13T22:52:06Z 2009-11-13T23:00:29Z <p>Yes. What you're looking for is called <a href="http://www.google.com/search?q=ajax+browser+history" rel="nofollow">AJAX browser history</a>.</p> <p>There are a few open implementations out there, like <a href="http://code.google.com/p/reallysimplehistory/" rel="nofollow">RSH</a> as well as plugins/modules for frameworks like <a href="http://plugins.jquery.com/project/history" rel="nofollow">jQuery</a> and <a href="http://developer.yahoo.com/yui/history/" rel="nofollow">YUI</a>.</p> http://stackoverflow.com/questions/1731728/cannot-get-css-drop-down-above-flash-file/1731814#1731814 5 Answer by Peter Bailey for Cannot get CSS Drop-Down above Flash File Peter Bailey 2009-11-13T20:47:27Z 2009-11-13T20:47:27Z <p>Unless you actually <em>need</em> the transparency (i.e., you flash movie has a transparent background), the best choice is to use <code>opaque</code> for the <code>wmode</code> which will have better performance than <code>transparent</code>. Only <code>wmode="window"</code> (which is the default) prevents the browser from drawing on top of the flash.</p> <p><a href="http://www.communitymx.com/content/article.cfm?cid=e5141" rel="nofollow">http://www.communitymx.com/content/article.cfm?cid=e5141</a></p> <blockquote> <p>This mode is the one that confused me due to this wording: "Opaque mode makes the movie hide everything behind it on the page. Additionally, opaque mode moves elements behind Flash movies (for example, with dynamic HTML) to prevent them from showing through." Truth is, since by using wmode="opaque", you've placed the Flash Player directly onto the page, it can now accept placement and positioning like any other element. Unless your viewer is not using a compliant browser (list to follow), the z-index will be respected and rendered. So yes, you can move elements behind Flash movies to prevent them from showing through, but you can just as easily move the elements in front of the Flash movies to prevent the Flash from showing through.</p> </blockquote> http://stackoverflow.com/questions/1731459/how-to-use-javascripts-addeventlistener-to-override-an-html-forms-default-sub/1731511#1731511 5 Answer by Peter Bailey for How to use Javascript's addEventListener() to override an HTML Form's default submit() behavior Peter Bailey 2009-11-13T19:54:59Z 2009-11-13T20:16:09Z <p>You need to receive the event in your handler function, and prevent the event from executing its default behavior. This applies to <code>click</code> events, <code>submit</code> events - really any event that's cancelable.</p> <pre><code>// using your example submitButton.addEventListener('click', func, false); // here's what func should look like function func( event ) { if ( event.preventDefault ) event.preventDefault(); event.returnValue = false; // do whatever } </code></pre> http://stackoverflow.com/questions/1730153/php-file-writing-optimization/1730370#1730370 1 Answer by Peter Bailey for PHP file writing optimization Peter Bailey 2009-11-13T16:36:14Z 2009-11-13T17:06:16Z <p>Here's your code with a few tiny changes that should help quite a bit</p> <ol> <li>Switched from <code>file()</code> to <code>fgets()</code>. This will load only a single line at a time into memory instead of every line from the file.</li> <li>Changed your calls to <code>preg_match()</code> to <code>stripos()</code> where applicable. Should be a tiny bit faster</li> <li>Moved the opening/closing of <code>$ourFileHandle</code> into the outer loop. This will <em>significantly</em> reduce the number of stat calls to the filesystem and should speed it up greatly.</li> </ol> <p>There are probably a lot of other optimizations that can be made in that monstrous if..else but i'll leave those up to another SOer (or you)</p> <pre><code>$fileselection = scandir_recursive('HH_new'); foreach ($fileselection as $extractedArray) { $tableName = basename( $extractedArray ); // Table name $handle = fopen( $extractedArray, 'r' ); $ourFileHandle = fopen("HH_newest/".$tableName.".txt", 'a') or die("can't open file"); while ( $line = fgets( $handle ) ) { if ( false !== stripos( $line, '(all-in)' ) ) { $line = stristr($line, ' (all-in)', true) .', and is all in'; $allin = ', and is all in'; } else { $allin = ''; } if ( preg_match('/posts the small blind of \$[\d\.]+/i' , $line ) ) { $player = stristr($line, ' posts ', true); $betValue = substr(stristr($line, '$'), 1); $bettingMatrix[$player]['betTotal'] = $betValue; } else if(preg_match('/posts the big blind of \$[\d\.]+/i' , $line)) { $player = stristr($line, ' posts ', true); $betValue = substr(stristr($line, '$'), 1); $bettingMatrix[$player]['betTotal'] = $betValue; } else if(preg_match('/\S+ raises /i' , $line)) { $player = stristr($line, ' raises ', true); $betValue = substr(strstr($line, '$'), 1); $bettingMatrix[$player]['betTotal'] = $betValue; //total bet this hand (shortcut) } else if(preg_match('/\S+ bets /i' , $line)) { $player = stristr($line, ' bets ', true); $betValue = substr(strstr($line, '$'), 1); $bettingMatrix[$player]['betTotal'] = $betValue; //total bet this hand (shortcut) } else if(preg_match('/\S+ calls /i' , $line)) { $player = stristr($line, ' calls ', true); $betValue = substr(stristr($line, '$'), 1); $callValue = $betValue - $bettingMatrix[$player]['betTotal']; //actual amount called $bettingMatrix[$player]['betTotal'] = $betValue; $line = stristr($line, '$', true)."\$".$callValue.$allin; $allin = ''; } else if(preg_match('/(\*\*\* (Flop|Turn|River))|(Full Tilt Poker)/i' , $line)) { unset($bettingMatrix); //zero $betValue } else if ( FALSE !== stripos( $line, '*** FLOP ***' ) ) { $flop = substr(stristr($line, '['), 0, -2); $line = '*** FLOP *** '. $flop; } else if ( FALSE !== stripos( $line, '*** TURN ***' ) ) { $turn = substr(stristr($line, '['), 0, -2); $line = '*** TURN *** '. $flop .' '. $turn; } else if ( FALSE !== stripos( $line, '*** RIVER ***' ) ) { $river = substr(stristr($line, '['), 0, -2); $line = '*** RIVER *** '. substr($flop, 0, -1) .' '. substr($turn, 1) .' '. $river; } else { } fwrite($ourFileHandle, $line); } fclose( $handle ); fclose( $ourFileHandle ); } </code></pre> http://stackoverflow.com/questions/1729892/require-a-method-in-parent-class-to-be-called-in-php/1729946#1729946 9 Answer by Peter Bailey for Require a method in parent class to be called in PHP Peter Bailey 2009-11-13T15:30:20Z 2009-11-13T15:30:20Z <p>If you leverage abstract classes and methods, you can force subclasses to implement the missing methods.</p> <pre><code>abstract class ParentClass { public function foo () { // do stuff $this-&gt;bar(); } abstract protected function bar(); } class Child extends ParentClass { protected function bar() { // does stuff } } </code></pre> <p>Subclasses that don't implement <code>bar()</code> will generate a fatal error.</p> http://stackoverflow.com/questions/1729787/how-does-php-process-functions-in-a-file/1729817#1729817 7 Answer by Peter Bailey for How does PHP process functions in a file? Peter Bailey 2009-11-13T15:12:54Z 2009-11-13T15:12:54Z <blockquote> <p>First, is it generally acceptable to have function one() call function three() even though function three() appears later in the file?</p> </blockquote> <p>Certainly. The source-order has no bearing on the order in which you call functions - it's all parsed and available before the first line is executed.</p> <blockquote> <p>Second, when file.php is loaded in the browser, does PHP calculate the return value of function two(), even though it is never called?</p> </blockquote> <p>No. It will be checked for syntax errors during parsing, but that's it - these will be E_PARSE level errors. Other errors are only discoverable at runtime and will be E_ERROR, E_WARNING, or E_NOTICE level errors.</p> <p><a href="http://us2.php.net/manual/en/errorfunc.constants.php" rel="nofollow">http://us2.php.net/manual/en/errorfunc.constants.php</a></p> http://stackoverflow.com/questions/1717212/facebook-platform-error-object-cannot-be-liked 2 Facebook Platform error: "Object cannot be liked" Peter Bailey 2009-11-11T18:34:24Z 2009-11-11T21:12:35Z <p>I'm working on a Facebook Application that generates wall posts. In testing these posts, I've discovered that the Facebook Platform action of "liking" a post is failing. The specific error message is</p> <blockquote> <p><strong>Object cannot be liked</strong><br> Unable to like this object because it is not accessible (it may have been removed or you may no longer have permission to see it).</p> </blockquote> <p>Neither of the conditions suggested in the error are actually true.</p> <ul> <li>Googling for the error returns <a href="http://www.google.com/search?q=%22Object+cannot+be+liked%22" rel="nofollow">zero results</a>(!) (EDIT! Now returns a result - this question)</li> <li>Searching the Facebook bug repository returns <a href="http://bugs.developers.facebook.com/buglist.cgi?quicksearch=Object+cannot+be+liked" rel="nofollow">zero results</a>. (EDIT! Returns <a href="http://bugs.developers.facebook.com/show%5Fbug.cgi?id=7540" rel="nofollow">one result</a> now because I reported this bug)</li> <li>Searching the Facebook community forums yields <a href="http://forum.developers.facebook.com/search.php?search%5Fid=1120083989" rel="nofollow">two posts</a> neither of which address this specific issue.</li> </ul> <p>These wall-to-wall posts are generated via <a href="http://wiki.developers.facebook.com/index.php/Stream.publish" rel="nofollow">stream.publish</a> using their PHP library. Here's a sample of the API call from my production code</p> <pre><code>$this-&gt;facebook-&gt;api_client-&gt;stream_publish( '' , array( 'name' =&gt; 'Sample Wall Post' , 'description' =&gt; 'Just a test description' , 'media' =&gt; array( FbAppHelper::imageAttachment( 'path/to/image.gif', 'http://apps.facebook.com/' . FB_CANVAS_URI ) ) ) , null , $facebookId ); </code></pre> <p>Any clues?</p> http://stackoverflow.com/questions/1717477/ignore-data-within-a-certain-set-of-characters-with-php/1717544#1717544 1 Answer by Peter Bailey for Ignore data within a certain set of characters with PHP Peter Bailey 2009-11-11T19:37:29Z 2009-11-11T19:37:29Z <p>You wouldn't "ignore it" as much as you would "replace it with nothing"</p> <p>A quick 'n' dirty approach</p> <pre><code>echo preg_replace( "/\*{3}.*?\*{3}/", "", file_get_contents( 'test.txt' ) ); </code></pre> http://stackoverflow.com/questions/1716266/javascript-document-getelementbyid-slow-performance/1716327#1716327 1 Answer by Peter Bailey for JavaScript: document.getElementById slow performance? Peter Bailey 2009-11-11T16:27:14Z 2009-11-11T16:27:14Z <p>Since you say "CSS elements" I suspect that a lot of your slow performance is not because of repetitive use of <code>document.getElementById()</code> (which you should avoid anyway) but rather how many times you modify the <code>style</code> object for a given node.</p> <p>Every single time you change a property on <code>style</code> you force the browser to re-draw that element and possibly many others on the page.</p> <pre><code>var elem = document.getElementById( 'desc' ); elem.style.textDecoration = "none"; // browser re-draw elem.style.borderWidth = "2px"; // browser re-draw elem.style.paddingBottom = "5px"; // browser re-draw </code></pre> <p>Here, the better solution is to use CSS classes and switch or add/remove the class name from the node. This lets you pack in as many style changes you want at the cost of only a single re-draw.</p> <pre><code>var elem = document.getElementById( 'desc' ); elem.className = "whatever"; // Only one browser re-draw! </code></pre> http://stackoverflow.com/questions/1711357/how-would-you-overload-the-operator-in-javascript/1711405#1711405 10 Answer by Peter Bailey for How would you overload the [] operator in javascript Peter Bailey 2009-11-10T21:37:56Z 2009-11-10T21:37:56Z <p>You can't overload operators in JavaScript.</p> <p>It was <a href="http://spreadsheets.google.com/pub?key=pFIHldY%5FCkszsFxMkQOReAQ&amp;gid=2" rel="nofollow">proposed for ECMAScript 4</a> but rejected.</p> <p>I don't think you'll see it anytime soon.</p> http://stackoverflow.com/questions/1711281/how-does-filepaths-in-php-work/1711349#1711349 2 Answer by Peter Bailey for How does filepaths in php work? Peter Bailey 2009-11-10T21:30:16Z 2009-11-10T21:30:16Z <p>The scope of PHP's file-based functions always starts at the point of the first file in the execution stack.</p> <p>If <code>index.php</code> is requested, and includes <code>classes/Foo.php</code> which in turn needs to include 'body/body.php', the file scope will be that of <code>index.php</code>.</p> <p>Essentially, the <a href="http://us2.php.net/getcwd" rel="nofollow">current working directory</a>.</p> <p>You have some options, though. If you want to include/open a file in the same directory as the current file, you can do something like this</p> <pre><code>file_get_contents( dirname( __FILE__ ) . '/body.html' ); </code></pre> <p>Or, you can define a base directory in a constant and use that for your inclusion</p> <pre><code>define( 'APP_ROOT', '/path/to/app/root/' ); file_get_contents( APP_ROOT . 'lib/body/body.html' ); </code></pre> http://stackoverflow.com/questions/1709301/javascript-submit-does-not-include-submit-button-value/1709352#1709352 4 Answer by Peter Bailey for Javascript Submit does not include Submit Button Value Peter Bailey 2009-11-10T16:40:44Z 2009-11-10T16:40:44Z <p>Yes, that is the correct behavior of <code>HTMLFormElement.submit()</code></p> <p>The reason your submit button value isn't sent is because HTML forms are designed so that they send the value of the submit button that was clicked (or otherwise activated). This allows for multiple submit buttons per form, such as a scenario where you'd want both "Preview" and a "Save" action.</p> <p>Since you are programmatically submitting the form, there is no explicit user action on an individual submit button so nothing is sent.</p> http://stackoverflow.com/questions/1836387/strategy-for-developing-namespaced-and-non-namespaced-versions-of-same-php-code Comment by Peter Bailey on Strategy for developing namespaced and non-namespaced versions of same PHP code Peter Bailey 2009-12-02T22:46:28Z 2009-12-02T22:46:28Z +1 Great question - I'm curious about this as well. http://stackoverflow.com/questions/1833892/converting-a-string-formatted-yyyymmddhhmmss-into-a-javascript-date-object/1833990#1833990 Comment by Peter Bailey on Converting a string formatted YYYYMMDDHHMMSS into a JavaScript Date object. Peter Bailey 2009-12-02T16:42:04Z 2009-12-02T16:42:04Z This is how I'd do it. Unless you need a bunch of other date processing, these external libs are overkill. http://stackoverflow.com/questions/1820973/underscore-in-php-function/1821000#1821000 Comment by Peter Bailey on Underscore in php function Peter Bailey 2009-11-30T17:45:40Z 2009-11-30T17:45:40Z I hate hate <i>hate</i> that they chose the term &quot;magic&quot; for this convention. It sounds so childish/idiotic. Why not just call them &quot;hooks&quot;? http://stackoverflow.com/questions/1708641/php-syntax-error-tencapsedandwhitespace/1770730#1770730 Comment by Peter Bailey on PHP syntax error T_ENCAPSED_AND_WHITESPACE Peter Bailey 2009-11-20T15:51:39Z 2009-11-20T15:51:39Z <a href="http://www.codinghorror.com/blog/archives/001310.html" rel="nofollow">codinghorror.com/blog/archives/&hellip;</a> http://stackoverflow.com/questions/1765999/passing-parameters-using-a-zend-framework-redirect-without-appending-to-url/1766026#1766026 Comment by Peter Bailey on Passing parameters using a Zend Framework redirect without appending to URL Peter Bailey 2009-11-19T20:02:41Z 2009-11-19T20:02:41Z Well awesome. Glad my answer pointed you in the right direction. http://stackoverflow.com/questions/1759137/domelement-cloning-and-appending-wrong-document-error/1759185#1759185 Comment by Peter Bailey on DOMElement cloning and appending: 'Wrong Document Error' Peter Bailey 2009-11-18T21:31:00Z 2009-11-18T21:31:00Z Perfect, Thanks. I was searching through the <code>DOMNode</code> and <code>DOMElement</code> APIs looking for something that would let me do this and (foolishly) never checked the <code>DOMDocument</code> methods =/ http://stackoverflow.com/questions/1751225/javascript-string-assignment-operators/1751237#1751237 Comment by Peter Bailey on Javascript String Assignment Operators Peter Bailey 2009-11-17T19:43:24Z 2009-11-17T19:43:24Z But even with numbers the minus sign is not &quot;decrement&quot;, that's minus-minus <code>--</code>. Minus-equals <code>-=</code> is just a convenience operator that's a compound operator analagous to the expression <code>a = a - b</code> http://stackoverflow.com/questions/1744128/foreach-loops-stdclass-objects/1744153#1744153 Comment by Peter Bailey on foreach loops & stdclass objects Peter Bailey 2009-11-16T19:58:46Z 2009-11-16T19:58:46Z Ok, I looked into the problem and updated my answer. http://stackoverflow.com/questions/1743023/how-to-handle-facebooks-new-uid-sizes/1743052#1743052 Comment by Peter Bailey on How to handle Facebooks new UID sizes? Peter Bailey 2009-11-16T16:55:32Z 2009-11-16T16:55:32Z @Stefan that is correct. http://stackoverflow.com/questions/1732473/javascript-function-return-not-working/1732539#1732539 Comment by Peter Bailey on javascript function return not working. Peter Bailey 2009-11-13T23:26:42Z 2009-11-13T23:26:42Z +1 Great answer from a new user :D http://stackoverflow.com/questions/1732378/using-the-back-button-to-revert-to-the-previous-state-of-the-page/1732401#1732401 Comment by Peter Bailey on Using the BACK button to revert to the previous state of the page Peter Bailey 2009-11-13T23:00:49Z 2009-11-13T23:00:49Z @Zarel - Thanks, fixed http://stackoverflow.com/questions/1731459/how-to-use-javascripts-addeventlistener-to-override-an-html-forms-default-sub/1731511#1731511 Comment by Peter Bailey on How to use Javascript's addEventListener() to override an HTML Form's default submit() behavior Peter Bailey 2009-11-13T20:15:55Z 2009-11-13T20:15:55Z @empraptor - Thanks! Absored answer into this example. http://stackoverflow.com/questions/1729787/how-does-php-process-functions-in-a-file/1729817#1729817 Comment by Peter Bailey on How does PHP process functions in a file? Peter Bailey 2009-11-13T15:51:50Z 2009-11-13T15:51:50Z Nothing here is PHP5 only http://stackoverflow.com/questions/1718756/having-problems-with-php-syntax-and-foreach/1718780#1718780 Comment by Peter Bailey on having problems with php syntax and foreach Peter Bailey 2009-11-11T23:22:43Z 2009-11-11T23:22:43Z To be pedantic, any value that's an array <i>or</i> implements Traversable can be used in a foreach loop. http://stackoverflow.com/questions/1717477/ignore-data-within-a-certain-set-of-characters-with-php/1717544#1717544 Comment by Peter Bailey on Ignore data within a certain set of characters with PHP Peter Bailey 2009-11-11T19:45:55Z 2009-11-11T19:45:55Z No it's not. I specifically and deliberately made the subpattern ungreedy. And I believe the test string you intended to indicated is <code>&quot;this &#42;&#42;&#42; some text &#42;&#42;&#42; is a &#42;&#42;&#42; other text &#42;&#42;&#42; test&quot;</code>