User Alan Storm - Stack Overflow most recent 30 from stackoverflow.com 2009-11-22T10:29:20Z http://stackoverflow.com/feeds/user/4668 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1776628/php-strreplace-issue-or-bug/1776655#1776655 1 Answer by Alan Storm for php str_replace issue or bug? Alan Storm 2009-11-21T20:22:03Z 2009-11-21T20:22:03Z <p>Whenever I'm having this kind of problem, I try formatting my search/replace call in a monospaced editor to see if anything pops out</p> <pre><code>$q_string = str_replace('javascript:l(" ', '', 'javascript:l("Bayou-La-Batre")'; </code></pre> <p>Formated like that, it becomes obvious that the 15th character of the search string does not match the 15th characters of the string that's being searched ([ ] vs. [B]).</p> <p>Try removing that whitespace and you should be happy. </p> http://stackoverflow.com/questions/1773977/how-to-strip-this-part-of-my-string/1774042#1774042 1 Answer by Alan Storm for How to strip this part of my string ? Alan Storm 2009-11-21T00:23:28Z 2009-11-21T00:23:28Z <p>PHP's PCRE Regular Expression engine was built for this kind of task</p> <pre><code>$string = "Hot_Chicks_call_me_at_123456789"; $new_string = preg_replace('{^.*_(\d+)$}x','$1',$string); //same thing, but with whitespace ignoring and comments turned on for explanations $new_string = preg_replace('{ ^.* #match any character at start of string _ #up to the last underscore (\d+) #followed by all digits repeating at least once $ #up to the end of the string }x','$1',$string); echo $new_string . "\n"; </code></pre> http://stackoverflow.com/questions/1767179/any-special-php-function-to-make-a-string-url-friendly-for-address-bar/1767333#1767333 5 Answer by Alan Storm for any special php function to make a string 'url' friendly for address-bar ? Alan Storm 2009-11-19T23:30:26Z 2009-11-20T17:08:09Z <p>It sounds like you want to take some bit of user input</p> <pre><code>Enter Name: ___Bob Smith_____ </code></pre> <p>And then later on use that input as part of a URL</p> <pre><code>http://example.com/bob-smith </code></pre> <p>If that's what you're after, there's no PHP function that will magically do it for you. My approach on something like this is to </p> <ol> <li><p>Sanitize the name down so it's URL safe</p></li> <li><p>If necessary, add a unique database identifier to the end of the string</p></li> </ol> <p>Number 1 is pretty easy with a regex</p> <pre><code>$url = strToLower(preg_replace('%[^a-z0-9_-]%six','-',$name)); //does a-z catch unicode? </code></pre> <p>That will turn <code>Bob Smith</code> into <code>bob-smith</code>.</p> <p>If getting a unique fragment for each string is important to you, you'll need to come up with some schemes for #2. Consider the following strings</p> <pre><code>Bob Smith Bob" Smith </code></pre> <p>They'll both be sanitized down to </p> <pre><code>Bob--Smith </code></pre> <p>Chances are you're storing this information in a database, so appending the primary key to the string will work. You could also incorporate the primary key as part of the URL. For example, assuming the primary key is a simple integer <code>auto_increment</code>.</p> <pre><code>http://example.com/27/bob-smith/ http://example.com/bob-smith_27 </code></pre> http://stackoverflow.com/questions/1759891/interactive-debugging-and-breakpoints-with-xdebug-and-the-zend-framework 0 Interactive Debugging and Breakpoints with Xdebug and the Zend Framework Alan Storm 2009-11-18T23:34:38Z 2009-11-19T22:33:13Z <p>I'm trying to get interactive debugging working with a Zend Framework application and Xdebug, using MacGDPp as the client debugger. I'm running to some problems setting breakpoints and was hoping</p> <ol> <li><p>Someone could solve my specific problem</p></li> <li><p>Someone could give me a high level overview of how this is supposed to work so I can track down the problem myself</p></li> </ol> <p>MacGDPp has an option to start the debugger immediately whenever a request is made. This works. I load a page of the Zend Application and execution stops at the first line of the Zend index.php file.</p> <p>However, if I attempt to set a break point in MacGDPp either a Controller or phtml template file, execution does NOT halt at those breakpoints. </p> <p>Outside of Zend, if I setup a simple page with a single require, I can sucsefully set break points in the required file.</p> <pre><code>File: test.php &lt;?php echo "One &lt;br&gt;"; echo "Two &lt;br&gt;"; echo "Three &lt;br&gt;"; echo "Four &lt;br&gt;"; echo "Five &lt;br&gt;"; echo "Six &lt;br&gt;"; echo "Seven &lt;br&gt;"; echo "Eight &lt;br&gt;"; echo "Nine &lt;br&gt;"; echo "Ten &lt;br&gt;"; require_once('test2.php'); File: test2.php &lt;?php echo "Eight &lt;br&gt;"; echo "Five &lt;br&gt;"; echo "Four &lt;br&gt;"; echo "Nine &lt;br&gt;"; echo "One &lt;br&gt;"; echo "Seven &lt;br&gt;"; echo "Six &lt;br&gt;"; echo "Ten &lt;br&gt;"; echo "Three &lt;br&gt;"; echo "Two &lt;br&gt;"; </code></pre> <p>So, I'm a bit at a loss on how to proceed. I don't know if my client is setting breakpoints wrong, or if there's something about Zend's autoloadng/instantiation patterns that prevents <strong>any</strong> interactive debugger from knowing how to hookup a files I select from the filesystem with a "remote" (localhost) URL I've executed.</p> <p>If anyone has a solution and/or some pointers on how remote PHP debuggers work I'd appreciate it.</p> http://stackoverflow.com/questions/1759891/interactive-debugging-and-breakpoints-with-xdebug-and-the-zend-framework/1767053#1767053 0 Answer by Alan Storm for Interactive Debugging and Breakpoints with Xdebug and the Zend Framework Alan Storm 2009-11-19T22:33:02Z 2009-11-19T22:33:02Z <p>Turns out I was setting break points on blank lines and MacGDPp skips over those.</p> http://stackoverflow.com/questions/1758014/whats-the-difference-between-extension-and-zendextension-in-php-ini 0 What's the Difference Between Extension and zend_extension in php.ini? Alan Storm 2009-11-18T18:18:19Z 2009-11-19T16:00:28Z <p>When I installed Xdebug through <code>pecl</code>, it added the following line to my php.ini file.</p> <pre><code>extension="xdebug.so" </code></pre> <p>and everything I used worked. Until today.</p> <p>Today I was having trouble setting up Xdebug for interactive debugging. I couldn't get anythign working until I changed the above to</p> <pre><code>zend_extension="/usr/local/lib/php/extensions/xdebug.so" </code></pre> <p>(Caveat: I <strong>think</strong> this is what got me working, but I'm not 100% sure)</p> <p>This raised the question in my mind. What's the difference in loading an extension via <code>extension=</code> vs. <code>zend_extension</code>?</p> http://stackoverflow.com/questions/1752258/magento-debugging-environment/1752531#1752531 0 Answer by Alan Storm for Magento Debugging Environment Alan Storm 2009-11-17T23:10:30Z 2009-11-17T23:10:30Z <p>I use a combination of <code>var_dump</code> with <a href="http://xdebug.org/" rel="nofollow">xDebug</a> <strong>and</strong> Magneto's <a href="http://alanstorm.com/magento_log_and_developer_mode" rel="nofollow">Mage::Log</a> method. Mage::Log is particularly nice, as it'll do some auto-expanding and pretty printing of objects if you pass them in (I'm not sure if that's the logger, or just Magento's __toString implementation).</p> <p>If I'm on my local development box I use Console.app to keep an eye on the log file, otherwise it's a simple</p> <pre><code>tail -f /path/to/log/file </code></pre> <p>That combined with some custom modules I've built for debugging the config and layout keep me happy. (although I prefer a light weight text editor toolchain vs. the One True IDE tool chain, so your results may vary) </p> http://stackoverflow.com/questions/1745635/using-jquery-selectors-to-get-form-elements-based-on-value-or-state 1 Using jQuery selectors to get form elements based on value or state Alan Storm 2009-11-16T23:47:01Z 2009-11-17T17:08:37Z <p>Is it possible to us jQuery to select a collection of form elements based on their value and/or state?</p> <p>For instance, I have some code that looks like</p> <pre><code>jQuery("input[type='checkbox']").each(function(element){ if(this.checked) { //do something with the checked checkeboxes } }); </code></pre> <p>I'd like to remove the interior conditional, and somehow add it to the initial selection. Either as part of the selector string, or via some additional method call on the chain.</p> http://stackoverflow.com/questions/1746673/magento-extension-installation/1746940#1746940 0 Answer by Alan Storm for magento extension installation Alan Storm 2009-11-17T06:18:46Z 2009-11-17T06:18:46Z <p>You place the code in</p> <pre><code>app/code/local/Packagename/Modulename </code></pre> <p>Where <code>Packagename/Modulename</code> applied to your specific module (if you have the code it should already be in this structure)</p> <p>Then, in </p> <pre><code>app/etc/modules </code></pre> <p>Add an XML file named <code>Packagename_Modulename.xml</code> with the following contents</p> <pre><code>&lt;?xml version="1.0" encoding="UTF-8"?&gt; &lt;config&gt; &lt;modules&gt; &lt;Packagename_Modulename&gt; &lt;active&gt;true&lt;/active&gt; &lt;codePool&gt;local&lt;/codePool&gt; &lt;/Packagename_Modulename&gt;&gt; &lt;/modules&gt; &lt;/config&gt; </code></pre> <p>Again, replacing <code>Packagename_Modulename</code> with the specific packagename and module name of the module you're installing.</p> <p>You'll need to clear your Magento cache to see the changes take place.</p> http://stackoverflow.com/questions/1735534/what-is-the-right-way-to-provide-a-zend-application-with-a-database-handler 2 What is the "right" Way to Provide a Zend Application With a Database Handler Alan Storm 2009-11-14T20:42:09Z 2009-11-16T19:02:52Z <p>Assuming you're hewing closely to the conventions of a <a href="http://framework.zend.com/manual/en/zend.application.html" rel="nofollow">ZendApplication</a>, where should you be setting up a database handler for application developers to access?</p> <p>I know how to setup a <a href="http://framework.zend.com/manual/en/zend.db.html" rel="nofollow">ZendDb</a> adapter. What I want to know is, in the context of the Zend Framework, how should developers be instantiating their DB handlers so they don't have to worry about multiple instantiations across one request, supplying credentials each time, etc. </p> <p>For example, when a developer is using Code Igniter and needs to run an arbitrary query, there's a database handler on the controller.</p> <pre><code>$this-&gt;db-&gt;query(.... </code></pre> <p>What's the Zend equivalent of this convention? To be clear, I can think of half a dozen way to accomplish this using the tools that the Zend Framework provides. What I'm looking for is how Zend Framework, in the general case, wants you to do this.</p> http://stackoverflow.com/questions/1689681/generic-command-line-sql-program 0 Generic Command Line SQL Program? Alan Storm 2009-11-06T19:13:49Z 2009-11-15T02:32:43Z <p>Is there any application/project that provides you with a command line SQL client that will work with multiple databases and/or provides a mechanism for writing your own drivers? </p> <p>Put another way, I'm looking for something like the mysql command line client or SQL*Plus for Oracle, but that's database agnostic.</p> <p>All platforms welcome, but extra points for OS X/*nix approaches.</p> http://stackoverflow.com/questions/1735972/php-fastest-way-to-check-for-invalid-characters-all-but-a-z-a-z-0-9/1735987#1735987 2 Answer by Alan Storm for PHP: fastest way to check for invalid characters (all but a-z, A-Z, 0-9, #, -, ., $)? Alan Storm 2009-11-14T23:36:03Z 2009-11-15T00:12:08Z <p>You'll want to shift over to using <code>preg</code> instead of <code>ereg</code>. The <code>ereg</code> family of functions have been depreciated, and (since php 5.3) using them will throw up a PHP warning, and they'll be removed from teh language soon. Also, it's been anecdotal wisdom that the preg functions are, in general, faster than ereg.</p> <p>As for speed, based on my experience and the codebases I've seen in my career, optimizing this kind of string performance would be premature at this point. Wrap the comparision in some logical function or method </p> <pre><code>//pseudo code based on OP function isValidForMyNeeds($buffer) { if (ereg("[A-Za-z0-9]\.\#\-\$", $buffer) === false) { echo "buffer only contains valid characters: a-z, A-Z, 0-9, #, -, ., $"; } } </code></pre> <p>and then when/if you determine this is a performance problem you can apply any needed optimization in one place.</p> http://stackoverflow.com/questions/1306740/json-vs-serialized-array-in-database/1306857#1306857 4 Answer by Alan Storm for JSON vs. Serialized Array in database Alan Storm 2009-08-20T15:12:47Z 2009-11-12T00:34:48Z <p>Portability: Winner JSON. JSON is supported on a wider variety of platforms, while PHP de-serialization is only supported (as far as I know) by PHP. While it's possible to parse either format in any language, JSON has more pre-built libraries.</p> <p>Future Proof: Winner JSON. JSON is a "standard", in the sense that Javascript is a standard, and isn't likely to change anytime in the future. The PHP group has made no promises about the future of the serialization format, and while it's unlikely to change in the future, the fact that a single group controls the format means you may end up with future data that's unreadable.</p> <p>Fidelity: Winner PHP. PHP serialization will allow you to store data with native PHP data types, including objects defined by custom classes. JSON will only allow you to store generic primitive types, lists of primitive types ("arrays") and key/value pair Objects. PHP Serialization may provide some advantages here if you're developing a PHP application.</p> <p>File Size: JSON has a slight win here, as PHP's current serialization format is more verbose (as it's storing more information).</p> <p>Performance: Who knows, it depends, profile. </p> <p>Conclusion: Go with JSON unless you have a compelling reason to use PHP Serialization .</p> http://stackoverflow.com/questions/1712969/magento-design-possible-in-all-pages/1713701#1713701 1 Answer by Alan Storm for Magento design possible in all pages? Alan Storm 2009-11-11T07:52:27Z 2009-11-11T07:52:27Z <p>Yes it's possible. </p> <p>Magento has a full skinning system, as well as a complex layout/template language that's deeper than some programming languages I've worked with.</p> http://stackoverflow.com/questions/1708827/how-to-use-server-side-includes-in-magento-description/1713692#1713692 2 Answer by Alan Storm for How to use Server Side Includes in Magento Description? Alan Storm 2009-11-11T07:50:23Z 2009-11-11T07:50:23Z <p>You're not going to be able to do that. </p> <p>Magento product descriptions are stored in the database, and then PHP fetches them out and displays them </p> <p>Server side includes are processed before Apache ever worries about outputing any content.</p> <p>Magento doesn't have a feature that's similar to SSI. You could probably write an override to the Product class in Magento to acheive this effect, but it would be non-trival and beyond the scope of a simple StackOverflow answer.</p> <p>Good luck.</p> http://stackoverflow.com/questions/1711718/how-do-i-filter-a-collection-by-a-yesno-type-attribute/1713666#1713666 0 Answer by Alan Storm for How do I filter a collection by a YesNo type attribute? Alan Storm 2009-11-11T07:44:58Z 2009-11-11T07:44:58Z <p>Whenever Magento's behavior is confusing me, I start hacking on the core source (a development copy, of course) to see what it's doing and why <strong>not</strong> doing what I think it should. I haven't done much playing around with the Admin UI stuff so I don't 100% understand your question, but take a look at the getOption function</p> <pre><code>File: /app/code/core/Mage/Eav/Model/Entity/Attribute/Source/Abstract.php public function getOptionId($value) { foreach ($this-&gt;getAllOptions() as $option) { if (strcasecmp($option['label'], $value)==0 || $option['value'] == $value) { return $option['value']; } } return null; } </code></pre> <p>I'd add some <code>Mage::Log</code> and/or <code>var_dump</code> calls in there for the values of <code>$option['label']</code> and <code>$option['value']</code> and see why your comparison is failing.</p> http://stackoverflow.com/questions/1711727/regular-expression-question/1711779#1711779 1 Answer by Alan Storm for Regular Expression Question Alan Storm 2009-11-10T22:43:50Z 2009-11-10T22:43:50Z <p>You probably want look ahead assertions (assuming your engine supports them, php/preg/pcre does)</p> <p>Look ahead assertions (or positive assertions) allow you to say "and it should be followed by X, but X shouldn't be a part of the match). Try the following syntax</p> <pre><code>\d{4}-\d{2}-\d{2}(?=[^0-9]) </code></pre> <p>The assertion is this part</p> <pre><code>(?=[^0-9]) </code></pre> <p>It's saying "after my regex, the next character can't be a number"</p> <p>If that doesn't get you what you want/need, post an example of your input and your PHP code that's not working. Those two items can he hugely useful in debugging these kinds of problems.</p> http://stackoverflow.com/questions/1539461/are-saps-bapi-apis-propritary-or-just-a-wrapper-for-something-else 1 Are SAP's BAPI APIs propritary, or just a wrapper for something else? Alan Storm 2009-10-08T17:53:13Z 2009-11-07T11:40:19Z <p>So, I've just been dumped into the middle of a project involving SAP. Specifically, I need to use SAPs BAPI APIs to pull a bunch of information out of "The Client's" SAP system. Given that SAP is a closed platform, I've been having trouble finding a high level overview of the who/what/where/when/how of SAP and BAPI. Specifically</p> <ol> <li><p>Is BAPI just a wrapper for SOAP and/or XML-RPC, or is it a completely proprietary communication format?</p></li> <li><p>Is there a PHP extension or library for working with these APIs?</p></li> <li><p>I've seen the acronym ABAP thrown around. What does it mean, and where does it fit into things?</p></li> </ol> <p>At this point I'm looking for good resources that can give me the 10,000 foot view. I realize you could spend a lifetime working with these ERP system and still not understand the whole thing. I just want a basic overview so I can talk to "The Client's" SAP folks and not sound like a complete newb.</p> http://stackoverflow.com/questions/1689484/should-i-learn-asp-net-mvc-or-the-zend-framework/1689655#1689655 4 Answer by Alan Storm for Should I learn ASP.NET MVC or the Zend Framework? Alan Storm 2009-11-06T19:08:35Z 2009-11-06T19:08:35Z <p>If those are your two choices, I'd recommend the Zend Framework over .NET MVC. Either platform is going to force you to think about solving problems in a way that's very different from your "amateur PHP" approach, but if you go with Zend Framework you'll still be able to fall back on your existing PHP skills to get something done while you climb the OO learning curve. You'll also start to see ways you can take your amateur PHP code and come up with more efficient OO approaches. </p> <p>ASP.NET MVC is a great platform, but you'll be climbing both the OO learning curve AND learning a new language (C#). When I'm leaning something new I always find it goes easier when I can concentrate on a <strong>single</strong> new thing. </p> http://stackoverflow.com/questions/1688711/can-we-alias-a-function-in-php/1688769#1688769 3 Answer by Alan Storm for Can we alias a function in php ? Alan Storm 2009-11-06T16:38:03Z 2009-11-06T18:52:30Z <p>No, there's no quick way to do this in PHP. The language does not offer the ability to alias functions without writing a wrapper function.</p> <p>If you really really really needed this, you could <a href="http://talks.php.net/show/extending-php-apachecon2003/0" rel="nofollow">write a PHP extension</a> that would do this for you. However, to use the extension you'd need to compile your extension and configure PHP to us this extension, which means the portability of your application would be greatly reduced.</p> http://stackoverflow.com/questions/1676821/where-do-you-load-balance-an-orm-in-a-php-mvc-application 3 Where do you "Load Balance" an ORM in a PHP MVC Application Alan Storm 2009-11-04T21:40:40Z 2009-11-05T00:42:33Z <p><strong>The Problem</strong>: Object models built using an ORM often need to perform multiple queries to perform a single action. For example a "get" action may pull information from multiple tables, particularly when you have a nested object structure. On complicated requests these queries can add up and your database will start blocking long before it would if you were manually writing SQL.</p> <p><strong>The Question</strong>: Where do <strong>you</strong> load balance the ORM to cut down on the number of queries that need to be made, and more importantly <strong>why did you choose this approach?</strong> Do you have separate models to load data dependent on context, or do you specify which data should load in the controller? Or something else?</p> http://stackoverflow.com/questions/1675532/use-selenium-code-to-download-web-page/1675789#1675789 0 Answer by Alan Storm for Use Selenium code to download Web page Alan Storm 2009-11-04T18:38:43Z 2009-11-04T18:38:43Z <p>The Export to PHP Option will export <strong>your test</strong> in a form that will (with a little extra work) run using the Selenium RC PHP driver. It does not export the page you're looking at. </p> <p>Out of the box Selenium IDE will not allow you to take the final source of your page and do anything with it. If I had to accomplish something like this I'd</p> <ol> <li><p>Reconsider my approach</p></li> <li><p>If I decided I wanted to do this with Selenium IDE, I'd look into using the user-extension.js mechanism to write a new Selenium action that would use Javascript to fetch the source of a page, and then POST it to a URL of my choosing</p></li> <li><p>Make the URL above the PHP page that does the rest of the processing. </p></li> </ol> <p>This is kind of hacky, would require some research into user-extension.js (not for everyone), and is extra custom work that's bound to be fragile. (See option #1)</p> http://stackoverflow.com/questions/1639213/why-is-magento-so-slow/1641220#1641220 6 Answer by Alan Storm for Why is Magento so slow? Alan Storm 2009-10-29T01:55:05Z 2009-10-29T01:55:05Z <p>I've only been tangentially involved in optimizing Magento for performance, but here's a few reasons why the system is so slow</p> <ol> <li><p>Parts of Magento use an EAV database system implemented on top of MySQL. This means querying for a single "thing" often means querying multiple rows</p></li> <li><p>There's a lot of things behind the scenes (application configuration, system config, layout config, etc.) that involve building up giant XML trees in memory and then "querying" those same trees for information. This takes both memory (storing the trees) and CPU (parsing the trees). Some of these (especially the layout tree) are huge. Also, unless caching is on, these tree are built up <strong>from files on disk</strong> and <strong>on each request</strong>.</p></li> <li><p>Magento uses its configuration system to allow you to override classes. This is a powerful feature, but it means anytime a model, helper, or controller is instantiated, extra PHP instructions need to run to determine if an original class file or an override class files is needed. This adds up.</p></li> <li><p>Besides the layout system, Magento's template system involves a lot of recursive rendering. This ads up.</p></li> </ol> <p>In general, the Magento Engineers were tasked, first and foremost, with building the most flexible, customizable system possible, and worry about performance latter. </p> <p>The first thing you'll want to do to ensure better performance is turn caching on (System -> Cache Management). This will relive some of the CPU/disk blocking that goes on while Magento is building up its various XML trees. </p> <p>The second thing you'll want to do is <strong>ensure your host and/or operations team</strong> has experience performance tuning Magento. If you're relying on the $7/month plan to see you through, well, good luck with that.</p> http://stackoverflow.com/questions/1633969/problems-importing-large-xml-feeds-lamp/1634382#1634382 1 Answer by Alan Storm for Problems importing large xml feeds (LAMP) Alan Storm 2009-10-27T23:48:51Z 2009-10-27T23:48:51Z <p>You have at least two problems. The first is you're trying to decompress the entire 700 MB file into memory. In fact, you're doing this twice.</p> <pre><code>while (!gzeof($fResponse) &amp;&amp; (strlen($sResponse) &lt; $chunkSize)) { $sResponse .= gzgets($fResponse, 4096); } $new_page .= $sResponse; </code></pre> <p>Both <code>$sResponse</code> and <code>$new_page</code> will hold a string that will eventaully contain the entire 700 MB file. So that's 1.4 GB of memory you're eating up by the time the script finishes running, not to mention the cost of string concatenation (while PHP handles strings better than other languages, there are limits to what mutable vs. non-mutable will get you)</p> <p>The second problem is you're running a regular expression over the increasingly large string in <code>$new_page</code>. This will put increased load on the server as <code>$new_page</code> gets larger and larger.</p> <p>The easiest way to solve your problems is to split up the tasks.</p> <ol> <li><p>Decompress the entire file to disk before doing any processing. </p></li> <li><p>Use a <strong>steram</strong> based XML parser, such as <a href="http://php.net/xmlreader" rel="nofollow"><code>XMLReader</code></a> or the old <a href="http://uk3.php.net/manual/en/book.xml.php" rel="nofollow">SAX Event Based parser</a>. </p></li> <li><p>Even with a stream/event based parser, storing the results in memory may end up eating up a lot of ram. In that case you'll want to take each match and store it on disk/in-a-database.</p></li> </ol> http://stackoverflow.com/questions/1632662/how-do-you-clean-up-a-php-project/1632714#1632714 4 Answer by Alan Storm for How Do You Clean up a PHP Project? Alan Storm 2009-10-27T18:17:18Z 2009-10-27T18:17:18Z <p>There's no magic tool that will do this for you, there's only functionality that will help you implement your own solution.</p> <p>The function you want is </p> <pre><code>get_included_files(); </code></pre> <p>This will return an array of any file that's been included so far. Put this at the end of your bootstrap file (or at the end of all your individual files) and you can get a list of every file that's been included or required. This will NOT report on files opened with <code>file_get_contents</code>, <code>fopen</code>, etc. That's why its a good idea to have some kind of wrapper functions/classes that will call these functions for you (allowing you to hook into the actions if need be)</p> <p>The approach I'd take it to add in code that logs the included files somewhere and then let your app run for a day or two (or exercise all its functionality yourself) This should give you a complete list of files that your project is actually using, allow you to clean up files that don't appear on the list. This logging could be as simple as</p> <pre><code>file_put_contents('/tmp/files.txt',print_r(get_included_files(), true),FILE_APPEND); </code></pre> http://stackoverflow.com/questions/1622778/what-would-php-bring-to-the-table-for-a-java-developer/1623162#1623162 3 Answer by Alan Storm for What would PHP bring to the table for a Java Developer ? Alan Storm 2009-10-26T05:04:55Z 2009-10-26T05:04:55Z <p>It's always wise to learn a new technology. Even if you run screaming from PHP, seeing how it solves certain problems might help you with your core Java EE development</p> <p>PHP would offer you </p> <ol> <li><p>A familiar object model (abstract and concrete classes, interfaces, etc.) with some weird differences</p></li> <li><p>Less verbose syntax </p></li> <li><p>Not having to deal with types</p></li> <li><p>Having to deal with no type safety</p></li> <li><p>A built in dictionary type (confusingly called array) that offers the convenience of generics without the verbosity (I think what I just said is true, but I'm not really a Java guy)</p></li> <li><p>Superior string handling, including high performance mutable strings </p></li> <li><p>Experience with what happens when you take a globally scoped scripting/programming language and bolt Java style OO on top of it without taking that global scoping away.</p></li> <li><p>Access to a huge number of c or c++ based libraries, and the ability to expose functions for any c or c++ library if you're willing to do a little work and recompiling</p></li> </ol> <p>Here's one way to think about the differences in the technology stack. In your world, Java came first and then JSP and servlets were developed to deal with the web/networked world. Imagine a language where JSP came first (with Apache serving the role of servlet), and then slowly a Java like syntax was developed built on top of JSP. </p> http://stackoverflow.com/questions/1622624/is-it-legal-to-use-opensource-libraries-in-proprietary-software/1622666#1622666 3 Answer by Alan Storm for Is it legal to use OpenSource libraries in proprietary software? Alan Storm 2009-10-26T00:58:47Z 2009-10-26T00:58:47Z <p>It depends on the specific open-source license, but it's 100% legal to use open source code in any project. The problem becomes "what is your obligation after releasing that software". </p> <p>For example, the <a href="http://en.wikipedia.org/wiki/BSD_licenses" rel="nofollow">BSD</a> and <a href="http://en.wikipedia.org/wiki/MIT_License" rel="nofollow">MIT</a> license are both designed to allow you to use code in closed source projects without redistributing any of your source code. </p> <p>If you used and complied GPL v2 code in your commercial project you'd need to give away copies of the source to anyone who bought it. </p> <p>Then there's the lesser GPL, which allows you to use unchanged libraries in your commercial application without having to disclose the source of your application. </p> <p>It all depends on the license.</p> http://stackoverflow.com/questions/1617103/php-square-instructions-not-algebra/1617137#1617137 3 Answer by Alan Storm for PHP square instructions not Algebra Alan Storm 2009-10-24T06:12:35Z 2009-10-24T06:12:35Z <p>Square is a common mathematical term meaning "to the power of two"</p> <p>For the second last 25 values they want the value in the array to be equal to the key * 3. So if the key was 145, the value would be 435.</p> <p>Also, I weep for the education system that's teaching someone to program before teaching them reading comprehension.</p> http://stackoverflow.com/questions/292926/robust-mature-html-parser-for-php 6 Robust, Mature HTML Parser for PHP Alan Storm 2008-11-15T19:09:52Z 2009-10-21T11:34:10Z <p>Are there any robust and mature HTML parsers available for PHP? A quick skimming of PEAR didn't turn anything up (lots of classes for generating HTML, not so much for consuming), and Google taught me a lot of people have started and then abandoned a variety of parser projects.</p> <p>Not interested in XML parsers (unless then can consume non-well formed HTML) or hacking it on my own with regular expressions.</p> <p><strong>Clarification of Intent:</strong> I'm not interested in filtering of HTML content, I'm interesting in extracting information from HTML documents.</p> http://stackoverflow.com/questions/1592945/converting-from-base-10-to-base-31-working-only-with-select-characters/1593031#1593031 0 Answer by Alan Storm for converting from base 10 to base 31 (working only with select characters) Alan Storm 2009-10-20T07:43:46Z 2009-10-20T07:43:46Z <p>While I'd encourage you to continue along with your algorithm for the learning exercise, consider using <a href="http://php.net/manual/en/function.base-convert.php" rel="nofollow">base_convert</a> if you just need to get the job done.</p> http://stackoverflow.com/questions/292926/robust-mature-html-parser-for-php/321963#321963 Comment by Alan Storm on Robust, Mature HTML Parser for PHP Alan Storm 2009-11-21T18:04:06Z 2009-11-21T18:04:06Z I've be re-researching this, and discovered that the problem I was having with DomDocument's loadXML method was due to an older linked version of libxml. I've been working on more up-to-date systems and DomDocument::loadHTML works like a charm. http://stackoverflow.com/questions/1775877/apache-mod-rewrite-rewriterule-with-l-argument-whats-wrong Comment by Alan Storm on Apache Mod Rewrite: RewriteRule with L argument. What's wrong? Alan Storm 2009-11-21T16:15:59Z 2009-11-21T16:15:59Z Are these rules being put in .htaccess or in your main apache config (often http.conf)? That will change the behavior of mod_rewrite. http://stackoverflow.com/questions/1772510/coding-standard Comment by Alan Storm on Coding Standard Alan Storm 2009-11-20T19:01:10Z 2009-11-20T19:01:10Z Dupe: <a href="http://stackoverflow.com/questions/383659/how-can-i-recognize-well-engineered-php-code/383684#383684" rel="nofollow" title="how can i recognize well engineered php code">stackoverflow.com/questions/383659/&hellip;</a> http://stackoverflow.com/questions/1767179/any-special-php-function-to-make-a-string-url-friendly-for-address-bar/1767333#1767333 Comment by Alan Storm on any special php function to make a string 'url' friendly for address-bar ? Alan Storm 2009-11-20T07:28:56Z 2009-11-20T07:28:56Z Totally screwed up that regex (forgot the negation) http://stackoverflow.com/questions/1767179/any-special-php-function-to-make-a-string-url-friendly-for-address-bar/1767333#1767333 Comment by Alan Storm on any special php function to make a string 'url' friendly for address-bar ? Alan Storm 2009-11-19T23:57:44Z 2009-11-19T23:57:44Z That's an interesting point dusoft and worth investigating. However, you'd need to incorporate some kind of 'check the database to see if this key already exists and if it does then somehow make it unique' logic OR write some uber-complicated sanitizing method that creates a unique key each time while still maintaining the semantic value of the URL fragment. http://stackoverflow.com/questions/1735972/php-fastest-way-to-check-for-invalid-characters-all-but-a-z-a-z-0-9/1735987#1735987 Comment by Alan Storm on PHP: fastest way to check for invalid characters (all but a-z, A-Z, 0-9, #, -, ., $)? Alan Storm 2009-11-15T08:16:48Z 2009-11-15T08:16:48Z Again, the point of the post wasn't the regular expression, which was simply copied from the OP. http://stackoverflow.com/questions/1735972/php-fastest-way-to-check-for-invalid-characters-all-but-a-z-a-z-0-9/1735987#1735987 Comment by Alan Storm on PHP: fastest way to check for invalid characters (all but a-z, A-Z, 0-9, #, -, ., $)? Alan Storm 2009-11-15T00:15:02Z 2009-11-15T00:15:02Z @gumbo: the code sample was meant to be more illustrative of the concept of a wrapper function than is was fixing the particular regular expression @tom true enough, and my post is just an optinion on the subject. but this kind of optimization is often endless. For example, right now you're waiting on an answer to this question when you could be moving on and solving another problem in your app. Also, performance of string comparisions in PHP is hugely dependent on the input variables. http://stackoverflow.com/questions/1725372/magento-how-to-filter-a-product-collection-using-2-category-filters Comment by Alan Storm on Magento - How to filter a product collection using 2 category filters? Alan Storm 2009-11-12T21:45:07Z 2009-11-12T21:45:07Z It helps tremensoudly with Magento problems if you can 1. Post an example of PHP code you're using to apply the filter 2. For any variables in the code, let people know the object's class There's not a proper consistent shared vocabulary among Magento developers, so giving people as much context as possible with help then figure out an answer. http://stackoverflow.com/questions/1711718/how-do-i-filter-a-collection-by-a-yesno-type-attribute/1713666#1713666 Comment by Alan Storm on How do I filter a collection by a YesNo type attribute? Alan Storm 2009-11-12T02:09:03Z 2009-11-12T02:09:03Z One last suggestion. Have you tried changing the value of the input back and forth between no and yes and then trying the filtering again? I've seen situations where an attribute has an &quot;unset' value, but the default is displayed on the form. http://stackoverflow.com/questions/1711718/how-do-i-filter-a-collection-by-a-yesno-type-attribute/1713666#1713666 Comment by Alan Storm on How do I filter a collection by a YesNo type attribute? Alan Storm 2009-11-11T17:25:19Z 2009-11-11T17:25:19Z Is this a Yes/No that you setup yourself in the interface? Maybe eav business is missing some key bit of information when you set it up. That would be my next guess if it was my problem. Here's how I'd debug it. Dump the contents of your database using mysqldump (non-binary) Make a change to one of the Yes/No menus that works, and make another database dump. Diff the two files to see what's changed. Then, track down the similar areas of the database for your problem menu item and see if anything looks &quot;wrong&quot;. (vague and tedious, but that's an undocumented system for you) http://stackoverflow.com/questions/1716414/php-pass-large-arrays-of-data-through-pages/1716475#1716475 Comment by Alan Storm on php: pass large arrays of data through pages Alan Storm 2009-11-11T16:49:18Z 2009-11-11T16:49:18Z Be careful with this approach. It works when you have a single database, but if you ever need to scale past that it's not going to work reliably. The lage between a master DB replicating out to it's slaves is often longer than the lag between page loads. http://stackoverflow.com/questions/1689681/generic-command-line-sql-program/1689791#1689791 Comment by Alan Storm on Generic Command Line SQL Program? Alan Storm 2009-11-06T19:44:18Z 2009-11-06T19:44:18Z That looks pretty awesome. Random related question: Is it a hard or easy thing to get the Mono run-time onto a system you don't have full access (i.e. root/sudo/Administrator) to? http://stackoverflow.com/questions/1688711/can-we-alias-a-function-in-php/1688769#1688769 Comment by Alan Storm on Can we alias a function in php ? Alan Storm 2009-11-06T18:52:54Z 2009-11-06T18:52:54Z Very true Kevin, I've updated the post to reflect your comments http://stackoverflow.com/questions/1676821/where-do-you-load-balance-an-orm-in-a-php-mvc-application/1676948#1676948 Comment by Alan Storm on Where do you "Load Balance" an ORM in a PHP MVC Application Alan Storm 2009-11-04T22:17:48Z 2009-11-04T22:17:48Z Caching is a powerful technique, but the base question still stands. Do you caching in your models, or do you cache in your controller? http://stackoverflow.com/questions/1641889/php-syntax-question Comment by Alan Storm on PHP syntax question Alan Storm 2009-10-29T06:26:30Z 2009-10-29T06:26:30Z @Andrew -- silly or not, the PHP manual has named this construct The Ternary Operator, so it's not a mistake to refer to it as such <a href="http://php.net/manual/en/language.operators.comparison.php" rel="nofollow">php.net/manual/en/&hellip;</a>