User jason - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T17:46:56Z http://stackoverflow.com/feeds/user/60783 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1739875/wordpress-database-output-remove-sql-injection-escapes/1740307#1740307 1 Answer by jason for Wordpress Database Output - Remove SQL Injection Escapes jason 2009-11-16T05:51:43Z 2009-11-16T05:51:43Z <p>It looks as if <a href="http://ca3.php.net/magic%5Fquotes" rel="nofollow"><code>magic_quotes</code></a> are enabled on the server you are using.</p> <p>There are a number of SO questions and answers that deal with what they are, why they're bad, and how to get rid of them, so I won't explicitly explain here, but suggest you look at a few of the following:</p> <ul> <li><a href="http://stackoverflow.com/questions/220437/magic-quotes-in-php">http://stackoverflow.com/questions/220437/magic-quotes-in-php</a></li> <li><a href="http://stackoverflow.com/questions/370292/work-around-magic-quotes-or-just-make-sure-theyre-off">http://stackoverflow.com/questions/370292/work-around-magic-quotes-or-just-make-sure-theyre-off</a></li> <li><a href="http://stackoverflow.com/questions/1153741/how-can-i-disable-php-magic-quotes-at-runtime">http://stackoverflow.com/questions/1153741/how-can-i-disable-php-magic-quotes-at-runtime</a></li> <li><a href="http://stackoverflow.com/questions/517008/how-to-turn-off-magic-quotes-on-shared-hosting">http://stackoverflow.com/questions/517008/how-to-turn-off-magic-quotes-on-shared-hosting</a></li> <li><a href="http://stackoverflow.com/questions/648307/php-protecting-itself-from-sql-injections">http://stackoverflow.com/questions/648307/php-protecting-itself-from-sql-injections</a></li> </ul> http://stackoverflow.com/questions/1740199/select-the-newest-record-with-a-non-null-value-in-one-column/1740221#1740221 1 Answer by jason for SELECT the newest record with a non null value in one column jason 2009-11-16T05:21:28Z 2009-11-16T05:21:28Z <p>I'm <em>sure</em> there's a better way, but in the mean time:</p> <pre><code>SELECT `count` FROM `keywords` WHERE keyword = "ipod" AND `count` IS NOT NULL ORDER BY `date` DESC LIMIT 1 </code></pre> <p>Should fit your requirements. Note that LIMIT is not portable SQL, so it will only work for MySQL. The <code>ORDER BY</code> clause is necessary to force the database to sort by, well, date.</p> <p>When I mentioned that there should be a better way, that's merely because of the way the <code>LIMIT</code> clause works, which is: The database has to fetch ALL rows that meet the query criteria, then simply truncates the result set to the desired amount specified by <code>LIMIT</code>.</p> http://stackoverflow.com/questions/1691263/putting-spaces-into-a-php-date-format/1691289#1691289 1 Answer by jason for Putting spaces into a PHP date format jason 2009-11-06T23:47:00Z 2009-11-06T23:47:00Z <p>My advice would be to not place the string literal inside the date formatting string, so you don't have to escape it:</p> <pre><code>$string = date('l, F j, Y, g:i a'). ' (or &amp;nbsp;) New York Time'; </code></pre> http://stackoverflow.com/questions/1655882/mysql-text-or-varchar/1655890#1655890 5 Answer by jason for mysql text or varchar ? jason 2009-10-31T23:17:06Z 2009-10-31T23:17:06Z <p>The <code>varchar</code> data type in MySQL &lt; 5.0.3 cannot hold data longer than 255 characters. While in MySQL >= 5.0.3 it has a maximum of 65,535 characters.</p> <p>So, it depends on the platform you're targeting, and your deployability requirements. If you want to be sure that it will work on MySQL versions less than 5.0.3, go with a <code>text</code> type data field for your longer column</p> <ul> <li><a href="http://dev.mysql.com/doc/refman/5.0/en/char.html" rel="nofollow">http://dev.mysql.com/doc/refman/5.0/en/char.html</a></li> </ul> http://stackoverflow.com/questions/1639892/how-to-calculate-time-passed-with-php-or-zenddate/1640079#1640079 1 Answer by jason for How to calculate time passed with PHP or Zend_Date? jason 2009-10-28T20:57:55Z 2009-10-28T20:57:55Z <p>Since you're already using the Zend Framework, there's a <a href="http://zymengine.com/docs/reference/zym.view.html#zym.view.helpers.timesince" rel="nofollow"><code>TimeSince</code> view helper</a> in the <a href="http://zymengine.com/" rel="nofollow">Zym Framework</a>, which is a library of additional ZF extensions and helpers.</p> <p>The <code>TimeSince</code> helper does basically exactly what you're trying to do:</p> <pre><code>Last updated &lt;?= $this-&gt;timeSince($timestamp); ?&gt; ago </code></pre> <p>Will output something like:</p> <pre><code>Last updated 8 hours ago </code></pre> http://stackoverflow.com/questions/1639784/why-is-http-dd-a-valid-url/1639809#1639809 9 Answer by jason for Why is 'http://dd ' a valid URL? jason 2009-10-28T20:11:20Z 2009-10-28T20:11:20Z <p>That's because it IS a perfectly valid URI, as you mention.</p> <p>I'd alter your strategy slightly... If you want URIs that are not only valid (as in well-formed), but also valid, in the sense that they actually point to a site, you'll have to add one more step.</p> <p>After the string validation, issue a HEAD request to ping the URL. If it returns a 2xy status code, you're probably good to go. This will work in most situations, but is not without caveats and exceptions.</p> http://stackoverflow.com/questions/1628568/round-numbers-in-15min-javascript/1628583#1628583 1 Answer by jason for Round numbers in 15min javascript jason 2009-10-27T03:15:14Z 2009-10-27T03:15:14Z <p>Use <code>Math.round</code> instead of <code>Math.floor</code> and everything should be ok-- other than that, your equation for rounding to the nearest <code>n</code> is correct.</p> http://stackoverflow.com/questions/1610155/file-path-problems-with-zend-framework-and-fread/1610162#1610162 1 Answer by jason for file path problems with Zend Framework and fread() jason 2009-10-22T21:44:46Z 2009-10-22T21:51:42Z <p>Try taking that relative path you get back from <code>Zend_File_Transfer</code> and passing it through the <a href="http://ca3.php.net/realpath" rel="nofollow"><code>realpath()</code></a> function before trying to read the file contents.</p> http://stackoverflow.com/questions/1609219/change-spaces-to/1609247#1609247 1 Answer by jason for Change spaces to - jason 2009-10-22T18:50:52Z 2009-10-22T21:35:27Z <p>Here's the method I use to santize strings for SEF urls:</p> <pre><code> $slug = trim(strtolower($value)); $slug = preg_replace('/[^a-z0-9 _-]/', '', $slug); return preg_replace('/\s+/', '-', $slug); </code></pre> <p>Feel free to add additional allowed characters to the first regex.</p> <p>Please note that this is NOT Unicode or even full ISO-8891 safe, well, it is, but it'll drop anything that isn't <code>a-z</code>. That is, you may need to normalize the string beforehand (i.e., replace accented characters with their closes ASCII equivalent.) There's a number of SO questions and answers dealing with this that I've seen before, but I can't find them at the moment. I'll edit them in here if I stumble upon any.</p> http://stackoverflow.com/questions/1508416/app-engine-image-resize-without-maintaining-aspect-ratio/1582675#1582675 -1 Answer by jason for App Engine image resize without maintaining aspect ratio? jason 2009-10-17T17:03:44Z 2009-10-17T17:16:34Z <p>Why not use the <a href="http://code.google.com/appengine/docs/python/images/functions.html" rel="nofollow"><code>crop</code> function?</a></p> <p>The correct arguments to transform a 720x540 to a 720x480 image would be (presuming you want a center crop):</p> <pre><code>crop(bytestream, 0, 0.055, 1, 0.945, output) </code></pre> <p>The <code>crop</code> function takes its arguments as a proportion of the image width or height, specified as a float value from 0.0 to 1.0. </p> http://stackoverflow.com/questions/1099064/do-beautiful-user-friendly-java-applets-exist/1099104#1099104 18 Answer by jason for Do beautiful, user-friendly Java applets exist? jason 2009-07-08T16:18:57Z 2009-09-04T01:46:04Z <p>The Facebook asynchronous image uploader is a Java applet. </p> <p><em>Update</em>: Apparently not developed in house at Facebook. <a href="http://www.aurigma.com/Products/ImageUploader/OnlineDemo.aspx" rel="nofollow">This seems to be the product</a>. </p> <p><em>Amendment</em>: Now that the question has been updated to be a bit more concise, I thought I'd add more to this answer.</p> <p>This kind of problem, a mass image uploader (in this case), is the kind perfectly solved by a Java applet. Why?</p> <ol> <li>It uses native UI elements, so users are not confused, or have to learn a new interface.</li> <li>It can save massive amounts of bandwidth and overhead, because image transformations, such as resizing and cropping, can take place on the client side, rather than the server.</li> <li>Write once, deploy everywhere (almost, sorta).</li> </ol> http://stackoverflow.com/questions/1337101/how-to-bootstrap-zendtestphpunitcontrollertestcase-with-zendapplication/1338246#1338246 1 Answer by jason for How to bootstrap Zend_Test_PHPUnit_ControllerTestCase with Zend_Application? jason 2009-08-27T00:15:03Z 2009-08-27T00:15:03Z <p>You've almost got it, but you have to assign your bootstrap as a parameter to your front controller instance in your test suite--just like <code>Zend_Application</code> automatically does, in a normal environment. In your <code>setUp()</code> add the following line:</p> <pre><code>$this-&gt;getFrontController()-&gt;setParam('bootstrap', $this-&gt;application-&gt;getBootstrap()); </code></pre> http://stackoverflow.com/questions/1325985/referencing-js-object-member-without-the-key/1325994#1325994 4 Answer by jason for referencing JS object member without the key jason 2009-08-25T04:16:02Z 2009-08-25T06:23:41Z <p>As far as I know, with a Javascript <code>Object</code> (in the literal sense, the object of type `Object) the only way to do this is:</p> <pre><code>for(var i in foo) { var value = foo[i].blah; break; } </code></pre> <p>Now <code>value</code> will contain the value of the first enumerable property of the <code>bar</code> object in the <code>foo</code> object. You could, of course, abstract this into a function. I was going to write an example, but <a href="http://stackoverflow.com/questions/1325985/referencing-js-object-member-without-the-key/1326128#1326128">CMS has a fantastic one in his answer here.</a></p> http://stackoverflow.com/questions/1309197/prevent-entire-php-execution-on-ajax-request/1309378#1309378 2 Answer by jason for Prevent entire php execution on ajax request jason 2009-08-20T23:23:13Z 2009-08-20T23:23:13Z <p>A native PHP implementation of Dooltaz's answer would be as follows:</p> <pre><code>function isAjax() { return $_SERVER['HTTP_X_REQUESTED_WITH'] === "XMLHttpRequest"; } </code></pre> <p>This of course, is contingent on the <code>X_Requested_With</code> header actually being sent by the clients XHR request. As far as I know, all major Javascript libraries do include this header, but if you're rolling on your XHR implementation, you'll need to add it.</p> http://stackoverflow.com/questions/1301208/how-can-i-skin-or-change-the-default-cursor-in-flex/1301304#1301304 0 Answer by jason for How can I skin or change the default cursor in Flex? jason 2009-08-19T17:06:30Z 2009-08-20T19:33:29Z <p>Yes, this is possible. You'll need to leverage <a href="http://livedocs.adobe.com/flex/3/langref/mx/managers/CursorManager.html" rel="nofollow"><code>mx.managers.CursorManager</code></a>.</p> <p>There's no way to replace the cursor graphic, but you achieve this by adding a new cursor to the manager with a high priority:</p> <pre><code> CursorManager.setCursor(myCursor, CursorManagerPriority.HIGH); </code></pre> <p>In the above example, <code>myCursor</code> can be a JPEG, GIF, PNG, or SVG image, a Sprite object, or a SWF file. Additionally, <code>setCursor</code> accepts two additional parameters, <code>xOffset:Number = 0, yOffset:Number = 0</code>, which you can use to, well, offset the image from the actual pointer position, if you need to.</p> <p><strong>Re: Your comment:</strong></p> <p>I believe you're correct. There's no way I know of to override a components hover cursor other than some event foo. Keep in mind that it is the <em>most recently added</em> cursor with the highest priority (to the `CursorMangager, of course) that gets displayed.</p> http://stackoverflow.com/questions/1308136/svn-set-all-files-marked-with-to-d/1308147#1308147 2 Answer by jason for SVN: set all files marked with "!" to "D"? jason 2009-08-20T18:55:41Z 2009-08-20T19:27:40Z <p>This is pretty easy to do with a little shell-scripting-foo.</p> <pre><code>svn status | grep "^\!" | awk '{print $2}' | xargs svn del </code></pre> <p>Here's a breakdown, as requested:</p> <ul> <li>The output of <code>svn status</code> is piped to <code>grep</code></li> <li><code>grep</code> pipes every line that starts with a <code>!</code> (The <code>^</code> in a regex means beginning of line, and the '\' is necessary to escape the special meaning of <code>!</code>)</li> <li><code>awk</code> then takes the second "argument" (so to speak.. this is the path of the file) from <code>grep</code> and pipes only it to...</li> <li><code>xargs</code> which is simply a utility for building an executing shell commands from standard input, which generates and runs the command <code>svn del your/file/here</code></li> </ul> <p>You can also use variations on this line to do all sorts of handy things with <code>svn</code>, like recursively adding files to the repo:</p> <pre><code>svn status | grep "^\?" | awk '{print $2}' | xargs svn add </code></pre> <p>Also, I just remembered, and wanted to point out that this will not work if you have spaces in your path or filenames. I always forget about that, because I never, ever do. If you have spaces in your paths/filenames, use the following variation on the first example:</p> <pre><code>svn status | grep "^\!" | sed -e 's/? *//' | sed -e 's/ /\\ /g' | xargs svn del </code></pre> <p>(There's probably a more graceful way to do that, so feel free to chime in). In this one, the first <code>sed</code> takes the first whitespace character, and any (if any) spaces that follow it, and removes them (basically a trim). Then the second call to <code>sed</code> replaces any remaining spaces with <code>\ </code>, which is an escaped space, as far as the shell is concerned. Come to think of it, you could probably just wrap it with quotes...</p> http://stackoverflow.com/questions/1302421/configure-memcached-backend-via-ini-file-or-xml-file-in-zend-framework/1302986#1302986 1 Answer by jason for Configure Memcached Backend via ini file or xml file in Zend Framework jason 2009-08-19T22:34:32Z 2009-08-19T22:34:32Z <p>The standard way to represent an array while using <code>Zend_Config_Ini</code> is to just make some nonsense keys:</p> <pre><code> cache.backend.memcache.servers.foo.host = host1.example.com cache.backend.memcache.servers.foo.port = 11211 ... cache.backend.memcache.servers.bar.host = host2.example.com cache.backend.memcache.servers.bar.port = 12345; </code></pre> http://stackoverflow.com/questions/1280921/how-do-i-tell-a-dataprovider-to-update/1280936#1280936 2 Answer by jason for How do I tell a DataProvider to update? jason 2009-08-15T01:44:10Z 2009-08-17T22:01:15Z <p>Arrays are not bindable in AS 3; they don't dispatch/trigger data binding events themselves.</p> <p>If you are working with Flex, you can wrap your array in an <code>ArrayCollection</code> which <em>is</em> bindable, and manipulate the <code>ArrayCollection</code> instead of the <code>Array</code>, everything should automatically work as you hope.</p> <p>So, in practice:</p> <pre><code>var myAC:ArrayCollection = new ArrayCollection(myArray); var myDP = new DataProvider(myAC); myAC[0] = 'changing the array!'; // will be reflected in the dataProvider </code></pre> <p>Better yet, if you're passing that <code>DataProvider</code> instance to a Flex component, you can usually (almost always) just pass the <code>ArrayCollection</code> instead. But, you haven't shown enough context for me to be sure on this.</p> <p>Here's a few useful links:</p> <ul> <li><a href="http://livedocs.adobe.com/flex/3/html/help.html?content=databinding%5F4.html" rel="nofollow">Binding to functions, Objects, and Array</a>s</li> <li><a href="http://livedocs.adobe.com/flex/3/langref/mx/collections/ArrayCollection.html" rel="nofollow">ArrayCollection</a></li> </ul> <p><strong>Edit:</strong> My fault, I did indeed assume you were using Flex for the above. </p> <p>In plain old AS3, the principal is the same. The <code>Array</code> does not dispatch events, but the <a href="http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/" rel="nofollow"><code>DataProvider</code></a> does. If you can make your changes <em>to the dataProvider itself</em> then you're good to go.</p> <p>The AS3 <code>DataProvider</code> class offers a bunch of methods for data manipulation, like <code>addItem</code>, <code>removeItem</code>, <code>replaceItem</code>, <code>replaceItemAt</code>, just for example.</p> <p>So, it basically comes down to what kind of changes you need to make to the source array. More often than not, you'll be able to do them via the <code>DataProvider</code>.</p> http://stackoverflow.com/questions/1281143/best-way-to-get-a-photos-file-extension-type-in-php/1281166#1281166 5 Answer by jason for Best way to get a photo's file extension type in PHP jason 2009-08-15T04:40:18Z 2009-08-15T23:24:44Z <p>File extensions lie, or can at least. It is definitely best not to rely on/trust user submitted data. Also, as the PHP manual notes:</p> <blockquote> <p>$_FILES['userfile']['type'] - The mime type of the file, if the browser provided this information. An example would be "image/gif". This mime type is however not checked on the PHP side and therefore don't take its value for granted.</p> </blockquote> <p>This is not reliable.</p> <p>Here's a better way:</p> <p>PHP's <a href="http://ca2.php.net/manual/en/function.getimagesize.php" rel="nofollow"><code>getimagesize()</code></a> function returns a numerically indexed array of data about the image, and index 2 is one of the IMAGETYPE_XXX constants (<a href="http://ca2.php.net/manual/en/image.constants.php" rel="nofollow">a full list of which is available here</a>) indicating the type of the image. These can then be used in a number of GD family functions, the two relevant ones being <a href="http://ca2.php.net/manual/en/function.image-type-to-extension.php" rel="nofollow"><code>image_type_to_extension()</code></a> and <a href="http://ca2.php.net/manual/en/function.image-type-to-mime-type.php" rel="nofollow"><code>image_type_to_mime_type()</code></a>.</p> <p>So, you could easily do something along these lines:</p> <pre><code>$imageData = getimagesize($_FILES['userfile']['tmp_name']); // $imageData[2] will contain the value of one of the constants $mimeType = image_type_to_mime_type($imageData[2]); $extension = image_type_to_extension($imageData[2]); </code></pre> <p>Although, iif you have the <code>exif</code> extension available, the <code>[exif_imagetype()][5]</code> function will return the exact same result as index 2 of <code>getimagesize()</code> but is much faster. </p> <p>I've used the GD methods as my primary example, because they are more commonly present across PHP installs. But the Imagick extension also offers similar functionallity, and you could also verify the mime type with the <code>fileinfo</code> extension (included since 5.3, btw).</p> http://stackoverflow.com/questions/1283054/invoking-hover-pseudo-class-by-transferring-events-via-javascript/1283072#1283072 5 Answer by jason for Invoking :hover pseudo-class by transferring events via JavaScript jason 2009-08-15T22:54:29Z 2009-08-15T23:20:11Z <p>The <code>:hover</code> pseudo-class is not necessarily known for its reliability. Also, there's no way (that I know of) to control its behaviour via Javascript. </p> <p>According to the <a href="http://www.w3.org/TR/DOM-Level-3-Events/events.html#event-mouseover" rel="nofollow">W3C's spec</a>, the <code>:hover</code> pseudo-class should only be applied when the <strong>user</strong> initiates the action. Quote:</p> <blockquote> <p>The :hover pseudo-class applies while the user designates an element (with some pointing device), but does not activate it. For example, a visual user agent could apply this pseudo-class when the cursor (mouse pointer) hovers over a box generated by the element. User agents not supporting interactive media do not have to support this pseudo-class.</p> </blockquote> <p>So, your best best, in this situation, would be to apply a concrete class (let's say <code>.hover</code>) via a function bound to the <code>mouseover</code> and <code>mouseout</code> events of the desired target elements.</p> <p>As an aside, you could probably save yourself a lot of hassle if you were to re-structure your markup into a hierarchical/nested form, then the DOM would automatically bubble these events for you. That said, <a href="http://stackoverflow.com/questions/1009753/pass-mouse-events-through-absolutely-positioned-element">see this SO question and answer on how to manually propagate mouse events through absolutely positioned elements</a>.</p> http://stackoverflow.com/questions/1281917/sifr-cant-textalign-my-tag-frustrated/1282020#1282020 1 Answer by jason for sIFR - Can't 'textalign' my tag - frustrated jason 2009-08-15T14:36:19Z 2009-08-15T14:36:19Z <p>That'd probably be because the valid CSS property name is <code>text-align</code>, not <code>textalign</code>.</p> http://stackoverflow.com/questions/1281146/initializing-resources-based-on-route-and-or-module/1281208#1281208 2 Answer by jason for Initializing resources based on route and/or module jason 2009-08-15T05:05:53Z 2009-08-15T05:05:53Z <p>To directly answer your question: From your <code>ResourceAbstract</code> subclass, you can retrieve the front controller like so:</p> <pre><code> $bootstrap = $this-&gt;getBootstrap(); $bootstrap-&gt;bootstrap('frontController'); // make sure it's initialized $fc = $bootstrap-&gt;getResource('frontController'); // Then I'm sure you know how to get the request from there. </code></pre> <p><strong>However,</strong> the request object is typically not constructed until the <code>dispatch()</code> method of <code>Zend_Controller_Front</code> is called. So, in short, the request object you are looking for does not yet exist. So, you <em>could</em> manually construct an instance of <code>Zend_Controller_Request_Http</code> then pass it along to your front controller. </p> <p><strong>But</strong>, nothing has been routed yet either, so none of the params you're used to seeing the request object have been populated. </p> <p>Basically, anything that happens in <code>Zend_Application</code> is <em>way</em> too early in your application's life cycle to do what you want. </p> <p>I would highly recommend doing your module-specific loading in the <code>routeShutdown</code> hook of a front controller plugin. </p> http://stackoverflow.com/questions/1278824/post-build-actions-in-flex-builder/1278876#1278876 1 Answer by jason for Post Build Actions in Flex Builder jason 2009-08-14T16:35:05Z 2009-08-14T17:35:02Z <p>You'll have to create a custom build script. For whatever reason, the included, default 'builder' is not editable through the interface, so you'll have to replicate a lot of its functionality. Luckily, (or maybe not) Flex Builder uses Apache Ant for its build scripts, so this may or may not be a familiar way to do this for you.</p> <p>To create a custom build script:</p> <ol> <li>In the Flex Navigator view, select a project and then right-click (Control-click on Macintosh) to display the context menu and select Properties.</li> <li>Select the Builders properties page. If you're using other Eclipse plug-ins, there may be more than one builder listed. Flex Builder provides a builder named Flex, which you cannot modify.</li> <li>Select New.</li> <li>In the Choose Configuration Type dialog box, select the appropriate configuration type. Flex Builder supports the program type. Select it and click OK to continue. From the new builder properties page you define the builder properties and reference the Ant script (an XML file).</li> <li>Click OK to apply it to the project.</li> </ol> <p>Flex builder is based on Eclipse 3.1, so <a href="http://www.eclipse.org/documentation/" rel="nofollow">documentation</a> for Ant integration for that release is relevant here.</p> <p><strong>Note:</strong> Ant support must be enabled in Flex Builder first. I usually use Flex Builder as a plugin, rather than the standalone version, and the standalone version doesn't come with it out of the box. <a href="http://flex.gunua.com/?p=78" rel="nofollow">Here's a tutorial on how to do this</a>.</p> http://stackoverflow.com/questions/1194037/limiting-the-values-in-an-array-collection/1194115#1194115 2 Answer by jason for Limiting the values in an array collection jason 2009-07-28T13:29:48Z 2009-08-14T04:13:11Z <p>Hmm, the best way I can think of is:</p> <pre><code>myAC = new ArrayCollection( myAC.toArray().slice(0,100) ); </code></pre> <p>Of course, if you could control the size when the <code>ArrayCollection</code> is first constructed, that would be better.</p> <p>Note that you cannot directly manipulate the <code>source</code> property of the object. From the docs of the <code>source</code> property of <code>ArrayCollection</code>:</p> <blockquote> <p>The source of data in the ArrayCollection. The ArrayCollection object does not represent any changes that you make directly to the source array. Always use the ICollectionView or IList methods to modify the collection.</p> </blockquote> http://stackoverflow.com/questions/1275766/can-you-unset-many-variables-at-once-in-php/1275770#1275770 5 Answer by jason for Can you unset() many variables at once in PHP? jason 2009-08-14T02:36:22Z 2009-08-14T02:36:22Z <p>Yes. </p> <p>Your example will work just as you imagine. The method signature for <code>unset()</code> is as follows:</p> <pre><code>void unset ( mixed $var [, mixed $var [, mixed $... ]] ) </code></pre> http://stackoverflow.com/questions/1275585/are-fully-qualified-css-styles-efficient/1275651#1275651 2 Answer by jason for Are fully qualified CSS styles efficient? jason 2009-08-14T01:48:36Z 2009-08-14T02:33:20Z <p><a href="http://code.google.com/speed/page-speed/docs/rendering.html#UseEfficientCSSSelectors" rel="nofollow">Google (not a search, actually them) seems to think that it does cause a performance hit.</a></p> <p>Also, the Mozilla foundation has an article "<a href="https://developer.mozilla.org/en/Writing%5FEfficient%5FCSS" rel="nofollow">Writing Efficient CSS for use in the Mozilla UI</a>" that outlines the possible performance pitfalls of CSS selectors in their browser(s), and how to optimize your style rules for their rendering engine. Their article has tons of examples of what's good and what's bad. Please keep in mind this is only relevant to their browsers, though.</p> <p>There are also some benchmarks publicly available, about CSS selectors affect on rendering speeds:</p> <ul> <li><a href="http://www.stevesouders.com/blog/2009/03/10/performance-impact-of-css-selectors/" rel="nofollow">http://www.stevesouders.com/blog/2009/03/10/performance-impact-of-css-selectors/</a></li> <li><a href="http://blog.archive.jpsykes.com/153/more-css-performance-testing-pt-3/" rel="nofollow">http://blog.archive.jpsykes.com/153/more-css-performance-testing-pt-3/</a></li> </ul> <p>I, however, think this is, for the most part, horse manure. You can effect FAR greater change on your page's loading/rendering speed by using some other simple optimizations. I believe that your sanity, and a well-organized code base should come first. If this were as big of a deal as some make it out to be, we'd all be back using HTML &lt; 4 attributes (bgcolor=, border=, etc) to style our web pages.</p> http://stackoverflow.com/questions/1275690/weird-htaccess-question/1275714#1275714 2 Answer by jason for weird htaccess question jason 2009-08-14T02:16:44Z 2009-08-14T02:16:44Z <p>The best way to do this is to not re-write the URL's of real files and directories on the filesystem. This can be achieved by adding a couple rewrite conditions to your rule:</p> <pre><code>RewriteCond %{REQUEST_FILENAME} !-s [OR] RewriteCond %{REQUEST_FILENAME} !-l [OR] RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ index.php?url=$1 [L,QSA] </code></pre> <p>Now, these mean, respectively, only rewrite urls that are: not a real file (with > 0 size), not a symlink, and not a directory.</p> <p>Alternatively, you could just make sure your rule does not match your admin directory:</p> <pre><code>RewriteCond %{REQUEST_URI} !^/admin RewriteRule ^(.*)$ index.php?url=$1 [L,QSA] </code></pre> <p>The first example is by far the most flexible, however, as it won't interfere with any static files, such as images, etc.</p> http://stackoverflow.com/questions/1275146/zenddb-lastinsertid-returns-super-big-number/1275247#1275247 2 Answer by jason for Zend_Db last_insert_id returns super big number jason 2009-08-13T23:30:45Z 2009-08-13T23:45:12Z <p>This seems to be a bug in the OO implementation of PHP's Mysqli adapter. <a href="http://ca2.php.net/manual/en/mysqli.insert-id.php#84625" rel="nofollow">See this note on PHP's website.</a></p> <p>For a temporary, stop-gap solution, try using the <code>PDO_Mysql</code> <code>Zend_Db</code> adapter.</p> <p>I'm currently creating an issue and working on a solution to see if I can work around this problem in <code>Zend_Db_Adapter_Mysqli</code>. I will keep this answer up to date with my progress.</p> <p>You can follow my progress on a workaround at <a href="http://framework.zend.com/issues/browse/ZF-7590" rel="nofollow">http://framework.zend.com/issues/browse/ZF-7590</a></p> http://stackoverflow.com/questions/1274558/when-to-filter-sanitize-data-before-database-insertion-or-before-display/1274586#1274586 2 Answer by jason for When to filter/sanitize data: before database insertion or before display? jason 2009-08-13T21:10:48Z 2009-08-13T21:10:48Z <p>When it comes to displaying user submitted data, the generally accepted mantra is to "Filter input, escape output."</p> <p>I would recommend against escaping things like html entities, etc, before going into the database, because you never know when HTML will not be your display medium. Also, different types of situations require different types of output escaping. For example, embedding a string in Javascript requires different escaping than in HTML. Doing this before may lull yourself into a false sense of security.</p> <p>So, the basic rule of thumb is, sanitize before use and specifically for that use; not pre-emptively.</p> <p>(Please note, I am not talking about escaping output for SQL, just for display. Please still do escape data bound for an SQL string).</p> http://stackoverflow.com/questions/1260923/zendframework-pass-array-options-to-a-custom-filter/1261339#1261339 3 Answer by jason for Zend_Framework: Pass array options to a custom filter jason 2009-08-11T16:01:48Z 2009-08-12T15:33:04Z <p>Instead of relying on the <code>PluginLoader</code> to load your filter class from the string name representation, you can pass an instance of your filter directly to the element.</p> <pre><code> $this-&gt;addElement('textarea', 'entry', array( 'filters' =&gt; array(new Core_Filter_MyFilter($filterOptions)) )); </code></pre> <p>This works with the <code>addFilter()</code> method as well.</p> <p>Also, while it is not mentioned in the Reference Manual, filters support a similar syntax to validators. So, utilizing the plugin loader, you can use the short name, and an array of arguments to pass to the constructor, like so:</p> <pre><code> $this-&gt;addElement('textarea', 'entry', array( 'filters' =&gt; array( array('MyFilter', array($filterOptions) ) )); </code></pre> <p>However, note that relying on the plugin loader in this fashion can produce unnecessary overhead if you are in a performance critical situation. The form element relies on PHP's reflection system to create the filter instance and pass it your options. PHP's runtime reflection is not exactly known for speed. This may or may not be a micro/premature optimization, and I'm not suggesting either way, just listing the relevant caveats.</p> http://stackoverflow.com/questions/1793516/ideas-for-natural-language-processing-project/1793707#1793707 Comment by jason on Ideas for Natural Language Processing project? jason 2009-11-25T16:28:50Z 2009-11-25T16:28:50Z I would buy lots of beer for someone who could write an app that turns most tweets into intelligible sentences. http://stackoverflow.com/questions/1746078/wordpress-2-8-6-foobars-my-theme-options-with-escape-slashes/1746262#1746262 Comment by jason on WordPress 2.8.6 foobars my theme options with escape slashes! jason 2009-11-17T03:06:29Z 2009-11-17T03:06:29Z You should amend your original question with this additional information, rather than posting this as an &quot;answer.&quot; http://stackoverflow.com/questions/1746078/wordpress-2-8-6-foobars-my-theme-options-with-escape-slashes Comment by jason on WordPress 2.8.6 foobars my theme options with escape slashes! jason 2009-11-17T01:45:43Z 2009-11-17T01:45:43Z Did anything else change? Hosts? PHP configuration? Sure sounds like a case of the magic quotes. http://stackoverflow.com/questions/1740747/jquery-form-plugin-ajax-file-upload-rails Comment by jason on jQuery Form Plugin + Ajax File Upload + Rails jason 2009-11-16T08:10:56Z 2009-11-16T08:10:56Z The <code>dataType</code> option of the jQuery form plugin is a proxy to the <code>dataType</code> option of jQuery's <code>ajax</code> method. It means that the XHR is expecting a <i>response</i> with a text/javascript content-type. It has nothing to do with what is being sent. http://stackoverflow.com/questions/1740582/why-dont-databases-intelligently-create-the-indexes-they-need/1740602#1740602 Comment by jason on Why don't databases intelligently create the indexes they need? jason 2009-11-16T07:26:47Z 2009-11-16T07:26:47Z There's also the potential for disk space usage to go through the roof, if that's something people still care about when indexing things. http://stackoverflow.com/questions/1740536/check-if-a-site-exists-with-php Comment by jason on check if a site exists with PHP jason 2009-11-16T07:03:52Z 2009-11-16T07:03:52Z <a href="http://stackoverflow.com/questions/1545432/what-is-the-easiest-way-to-use-the-head-command-of-http-in-php" rel="nofollow" title="what is the easiest way to use the head command of http in php">stackoverflow.com/questions/1545432/&hellip;</a> http://stackoverflow.com/questions/1738696/php-ide-with-best-code-completion/1738710#1738710 Comment by jason on PHP IDE with best code completion? jason 2009-11-16T06:59:41Z 2009-11-16T06:59:41Z <code>Ctrl - Space</code> for autocomplete <i>is</i> the same behaviour as VS. http://stackoverflow.com/questions/1740282/having-trouble-with-uploading-in-php Comment by jason on Having trouble with uploading in php jason 2009-11-16T05:46:26Z 2009-11-16T05:46:26Z Please include the upload handling source code--Like, the code that calls <code>move&#95;uploaded&#95;file()</code> etc. http://stackoverflow.com/questions/1739875/wordpress-database-output-remove-sql-injection-escapes Comment by jason on Wordpress Database Output - Remove SQL Injection Escapes jason 2009-11-16T03:23:32Z 2009-11-16T03:23:32Z Magic quotes strikes again! http://stackoverflow.com/questions/1615745/what-css3-features-does-internet-explorer-8-support/1615759#1615759 Comment by jason on What CSS3 features does Internet Explorer 8 support? jason 2009-11-15T22:51:06Z 2009-11-15T22:51:06Z Oh, it's coming back: <a href="http://www.w3.org/TR/css3-marquee/" rel="nofollow">w3.org/TR/css3-marquee</a> http://stackoverflow.com/questions/1738696/php-ide-with-best-code-completion/1738710#1738710 Comment by jason on PHP IDE with best code completion? jason 2009-11-15T21:33:35Z 2009-11-15T21:33:35Z Then set it to something reasonable. It's in milliseconds. Mine is at 200, and it's just perfect. Doesn't come up when I don't want it to, does if I do. http://stackoverflow.com/questions/1738696/php-ide-with-best-code-completion/1738710#1738710 Comment by jason on PHP IDE with best code completion? jason 2009-11-15T21:27:26Z 2009-11-15T21:27:26Z I have no idea what you're talking about. It works fine. Which version of Eclipse and PDT are you using? http://stackoverflow.com/questions/1738696/php-ide-with-best-code-completion/1738710#1738710 Comment by jason on PHP IDE with best code completion? jason 2009-11-15T21:25:15Z 2009-11-15T21:25:15Z In Eclipse, navigate to: <code>Window -&gt; Preferences -&gt; PHP -&gt; Editor -&gt; Code Assist</code> And you can configure the &quot;Auto activation delay&quot; http://stackoverflow.com/questions/1738696/php-ide-with-best-code-completion/1738710#1738710 Comment by jason on PHP IDE with best code completion? jason 2009-11-15T20:42:47Z 2009-11-15T20:42:47Z <code>Ctrl - Spacebar</code> and the autocomplete dialog shows instantly. http://stackoverflow.com/questions/1736686/regular-expression-to-match-phone-number/1736700#1736700 Comment by jason on Regular expression to match phone number? jason 2009-11-15T05:36:16Z 2009-11-15T05:36:16Z This will consider <code>0------</code> to be valid.