User Alan Storm - Stack Overflow most recent 30 from stackoverflow.com 2009-11-08T04:46:25Z http://stackoverflow.com/feeds/user/4668 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1539461/are-saps-bapi-apis-propritary-or-just-a-wrapper-for-something-else 0 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/1689681/generic-command-line-sql-program 0 Generic Command Line SQL Program? Alan Storm 2009-11-06T19:13:49Z 2009-11-06T19:28:49Z <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/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 2 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 2 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 5 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/1581559/ascii-library-for-creating-pretty-directory-trees 1 ASCII Library for Creating "Pretty" Directory Trees? Alan Storm 2009-10-17T06:18:03Z 2009-10-17T17:08:42Z <p>Is there some *nix tool or perl/php library that will let you easily create directory tree visualizations that look like the following?</p> <pre><code>www |-- private | |-- app | | |-- php | | | |-- classes | | | +-- scripts | | |-- settings | | +-- sql | +-- lib | +-- ZendFramework-HEAD +-- public |-- css |-- images +-- scripts </code></pre> http://stackoverflow.com/questions/1580520/has-anyone-here-ever-tried-pear/1580574#1580574 6 Answer by Alan Storm for Has Anyone Here ever tried PEAR Alan Storm 2009-10-16T21:39:50Z 2009-10-16T21:39:50Z <p>No, PEAR isn't going to magically solve these problems for you.</p> <p><code>PEAR</code> is a collection of PHP classes that are meant to solve common problems faced by PHP users. The <a href="http://pear.php.net/search.php?q=mail&amp;in=packages&amp;x=0&amp;y=0" rel="nofollow">Mail</a> packages offer code for interacting with different parts Email systems. They do not contain code for creating email systems from scratch.</p> <p>For example, form the Mail_Queue documentation</p> <blockquote> <p>The Mail_Queue class puts mails in a temporary container, waiting to be fed to the MTA (Mail >Transport Agent), and sends them later (e.g. a certain amount of mails every few minutes) by >crontab or in other way.</p> </blockquote> <p>The MTA in this case in sendmail, postfix, etc. </p> <p>Another example, from the Mail_Mbox documentation</p> <blockquote> <p>It can split messages inside a Mbox, return the number of messages, return, update or remove an specific message or add a message on the Mbox</p> </blockquote> <p>Incorrect use of "an" aside, you are using this to read existing MBOX files, and not caring how they got there.</p> <p>The Mail package is about interacting with existing mail systems, NOT creating replacements. You'll still need to understand how all those email systems work to create a "full mail server, similar to a conventional SMTP mail service". If you're doing this because you want to learn how email systems work, have at it. If you're doing this because you thing this will give your business some leg up in the email game, I laugh and say "good luck with that"</p> http://stackoverflow.com/questions/1572236/magento-disecting-the-default-theme/1573938#1573938 2 Answer by Alan Storm for Magento: Disecting the Default Theme Alan Storm 2009-10-15T17:37:56Z 2009-10-15T17:37:56Z <p>What you want doesn't exist. There is no "skinning guide" for Magento. The closest thing you'll find is the <a href="http://www.magentocommerce.com/design_guide" rel="nofollow">Designer's Guide</a>. If you're interested in learning how the layout engine works from a programming point of view I wrote an article <a href="http://alanstorm.com/layouts_blocks_and_templates" rel="nofollow">that covers that</a>, but you're not going to find a robust "here's how to skin Magento in thirty seven easy steps". </p> <p>There's a steep learning curve with Magento, and no way NOT to spend a "ridiculous amount of time" on your first project. Given how hard it is to find competent Magento developers, consider it an investment in the platform. </p> http://stackoverflow.com/questions/1564067/problems-with-php-pcre/1564655#1564655 1 Answer by Alan Storm for Problems with PHP PCRE Alan Storm 2009-10-14T06:54:09Z 2009-10-14T06:54:09Z <p>From what I can see, the regular expression you provided will match <strong>anything</strong> you pass into it. Here's why</p> <pre><code>\d{0,5} #\d matches any digit character, while {0,5} means the #preceding character must be repeated between **0** and five times </code></pre> <p>So your regular expression is essentially short circuiting. The engine see the first character of your string and says "has a digit been repeated 0 times? Yes? OK, it's a match!</p> http://stackoverflow.com/questions/1358232/why-use-macros-in-c 7 Why use Macros in C? [closed] Alan Storm 2009-08-31T16:33:42Z 2009-10-13T01:09:00Z <blockquote> <p><strong>Possible Duplicate:</strong><br /> <a href="http://stackoverflow.com/questions/653839/what-are-c-macros-useful-for">What are C macros useful for?</a> </p> </blockquote> <p>Every few months I get an itch to go learn some bit of C that my crap college programming education never covered. Today it's macros. My basic understanding of macros is they're a simple search and replace that happens on your code <strong>prior</strong> to it being compiled. I'm having trouble understanding <strong>why</strong> you'd use macros. Most of the basic examples I'm looking at are something like </p> <pre><code>TEST(a,%d); #define TEST(a,b) printf(" The value of " #a " = " #b " \n", a) //which expands to printf(" The value of a = %d \n",a); </code></pre> <p>(example from <a href="http://www.velocityreviews.com/forums/t313981-how-to-define-c-macro.html" rel="nofollow">here</a>)</p> <p>From my newbie point of view, it seems like defining a new function would give you the same results. I can see how historically macros would be useful for modifying a lot of source quickly in the days before easy search and replace, but something tells me I'm missing some bigger point. </p> <p>So what kind of useful things can macros do for you?</p> http://stackoverflow.com/questions/1551526/is-it-possible-to-use-a-dynamic-xpath-expression-in-a-xslt-style-sheet 1 Is it possible to use a Dynamic xPath expression in a xslt style sheet? Alan Storm 2009-10-11T19:26:50Z 2009-10-12T21:42:55Z <p>I'd like to use the value of an xslt parameter in an xpath expression. Specifically, as part of a <code>not()</code> call in an <code>&lt;xsl:if</code> expression.</p> <pre><code>&lt;xsl:transform version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"&gt; &lt;!-- my_param contains a string '/foo/bar', passed in from ant --&gt; &lt;!-- the 'no' is just a default value --&gt; &lt;xsl:param name="my_param"&gt;no&lt;/xsl:param&gt; &lt;xsl:variable name="var_myparam" select="$my_param" /&gt; &lt;!-- ... --&gt; &lt;!-- this works --&gt; &lt;xsl:if test="not(/foo/bar)" /&gt; &lt;!-- expression returns boolean true --&gt; &lt;!-- ... --&gt; &lt;/xsl:if&gt; &lt;!-- I can't figure out how to do this the right way --&gt; &lt;!-- None of these appear to work --&gt; &lt;xsl:if test="not($var_myparam)" /&gt; &lt;!-- expression returns boolean false --&gt; &lt;!-- ... --&gt; &lt;/xsl:if&gt; &lt;xsl:if test="not({$var_myparam})" /&gt; &lt;!-- complains Required attribute 'test' is missing --&gt; &lt;!-- ... --&gt; &lt;/xsl:if&gt; &lt;xsl:if test="not({$myparam})" /&gt; &lt;!-- complains Required attribute 'test' is missing --&gt; &lt;!-- ... --&gt; &lt;/xsl:if&gt; &lt;xsl:if test="not($myparam)" /&gt; &lt;!-- expression returns boolean false --&gt; &lt;!-- ... --&gt; &lt;/xsl:if&gt; &lt;/xsl:transform&gt; </code></pre> <p>I'm a little unclear on what the correct syntax is for creating a dynamic xpath expression in an xslt style sheet. I'm also a little fuzzy on the difference between a paramater, a variable, and how expanstion of both works. For example, with parameters, I know that something I need the brackets, and sometimes I don't.</p> <pre><code>&lt;!-- when creating an element, it seems I need brackets --&gt; &lt;xsl:element name="{$my_param}" /&gt; &lt;!-- when selecting an element value for the output stream, no brackets are needed --&gt; &lt;xsl:value-of select="$my_param"/&gt; </code></pre> <p>Any general/specific help would be greatly appreciated.</p> http://stackoverflow.com/questions/1538770/magento-prices-inclusive-of-tax/1556171#1556171 1 Answer by Alan Storm for magento prices inclusive of tax Alan Storm 2009-10-12T18:35:35Z 2009-10-12T18:35:35Z <p>From a high level the answer is to not setup your prices inclusive of tax. The Magento system expects you to setup prices without tax. All calculations in the system will be based on that. </p> <p>If you want prices to display with tax, you should override and/or create new <code>Blocks</code> and phtml templates that display price information. You want to change what is shown to the user, and not change what is used in system calculations.</p> http://stackoverflow.com/questions/1556123/what-toolchains-support-passing-in-a-nodeset-to-an-xslt-transformation-as-a-param 0 What Toolchains Support Passing in a Nodeset to an XSLT Transformation as a Parameter? Alan Storm 2009-10-12T18:27:18Z 2009-10-12T18:27:18Z <p>This is a followup to an answer on a <a href="http://stackoverflow.com/questions/1551526/is-it-possible-to-use-a-dynamic-xpath-expression-in-a-xslt-style-sheet/1555958#1555958">previous question</a> I had about XSLT.</p> <p>To recap, I didn't realize that without EXSLT, XSLT wouldn't let you dynamically create an xpath expression with string values. One of the suggested workarounds was </p> <blockquote> <p>to query the input document's DOM before you execute the transform, and pass the node-set into the transform</p> </blockquote> <p>I was using Apache Ant to do the transformation, and per <a href="http://ant.apache.org/manual/CoreTasks/style.html" rel="nofollow">the manual</a> on the xslt/style task's parameters</p> <blockquote> <p>Text value to be placed into the parameter. Was originally intended to be an XSL expression.</p> </blockquote> <p>it sounds like Apache Ant doesn't support this. It got me wondering though, how would this semantics of this work in a system that did support this?</p> <p>So, what Toolchains or systems support passing a nodeset from the source document into a transformation as a parameter. Bonus points for example code.</p> http://stackoverflow.com/questions/1555790/php-env-where-are-they-stored/1555815#1555815 2 Answer by Alan Storm for PHP $_ENV where are they stored Alan Storm 2009-10-12T17:18:42Z 2009-10-12T17:18:42Z <p>Dump the entire contents of the array and see for yourself, it's likely an issue with the capitalization of your key</p> <pre><code>print_r($_ENV); var_dump($_ENV); </code></pre> http://stackoverflow.com/questions/1555774/figuring-out-which-files-are-included-rendering-a-url-with-php/1555781#1555781 2 Answer by Alan Storm for Figuring out which files are included rendering a URL with PHP. Alan Storm 2009-10-12T17:11:06Z 2009-10-12T17:16:41Z <p>You're not going to be able to do this from a URL. To the outside world a URL is just something that returns a bunch of text. There's little to nothing that can be done to devine how that text was created.</p> <p>If you have access to the source code, placing this at the end of your entry file will be a big help.</p> <pre><code>print_r(get_included_files()); </code></pre> <p>This will print out every file that's been included or required in. However, this won't give you any file that's been accessed with fopen, file_get_contents, etc. If you're interested in seeing if a particular file has been <strong>accessed</strong> or not, the unix <code>stat</code> program can tell you this. However, in normal computer operation files are accessed for lots of different reasons, so you'll want to be careful relying on anything that comes out of stat.</p> http://stackoverflow.com/questions/1552607/mvc-how-and-why-and-what-other-good-options-are-there-php/1552704#1552704 0 Answer by Alan Storm for MVC... how and why, and what other good options are there (PHP)? Alan Storm 2009-10-12T04:31:02Z 2009-10-12T04:31:02Z <p>The big "win" of the controller in PHP's version of MVC is you get away from having a separate PHP page for each and every URL that your application responds to. </p> <p>When you have a new single page being created for each URL, you're expecting your developers (or yourself) to pull in the needed libraries and initialize the template/layout engine in the same way. Even when you're a single developer, the temptation to break from the "standard" way of doing things usually ends up being too strong, which means <strong>each URL/PHP-page ends up being its own mini-application</strong> instead of each URL/PHP-page being part of the same application. When you have multiple developers this is guarantied to happen. </p> <p>The end results is pages and components that don't play nice with each other and are hard to debug (with everything hanging out in the global namespace), giving an inconsistent experience for both the users and the developers who have to work on the project.</p> <p>MVC frameworks also make it easier to give your site friendly URLs. There's usually enough going on in the routing system that you don't <strong>need</strong> to resort to a huge number of query string variables. Readable URLs are a plus, for SEO and for savvy users. </p> <p>Finally, although this is pie in the sky with most shops, when you have a controller the methods on the controller become easily unit testable. While you can technically wrap a test harness around a non-MVC site, it's always a pain in the ass, and never works like you'd like it to.</p> http://stackoverflow.com/questions/1539004/add-a-decimal-point-2-chars-from-the-right-under-php/1539045#1539045 0 Answer by Alan Storm for Add a decimal point 2 chars from the right under PHP Alan Storm 2009-10-08T16:43:34Z 2009-10-08T16:43:34Z <p>Using <a href="http://php.net/number_format" rel="nofollow">number_format</a>. </p> <pre><code>for($i=0;$i&lt;count($array);$i++) { $array[$i] = number_format($array[$i]/100,2); //if you need them as numbers $array[$i] = (float) number_format($array[$i]/100,2); } </code></pre> http://stackoverflow.com/questions/1534701/writing-yahoo-bot-why-cant-i-fetch-a-web-page-on-yahoo-mail-with-help-of-php/1535081#1535081 0 Answer by Alan Storm for Writing Yahoo! Bot: Why can't I fetch a web page on Yahoo! mail with help of PHP? Alan Storm 2009-10-08T01:09:08Z 2009-10-08T01:09:08Z <p>Long story short, the answers you get today may not work tomorrow, as Yahoo will</p> <ol> <li>Be looking for this kind of TOS abuse</li> <li>May change the structure of their application, breaking your scripts</li> </ol> <p>That means if you want to do something like this, you need to teach yourself how to </p> <ol> <li>Writes down the same cookies that a browser would</li> <li>Sends back the same cookies as a browser would</li> <li>Sends the same HTTP header information that a browser would</li> </ol> <p>When I used to do this, I'd always use the <code>CURLOPT_COOKIEFILE</code> and <code>CURLOPT_COOKIEJAR</code> options, and <code>CURLOPT_HTTPHEADER</code> to send back any needed headers. More info on that can be found in <a href="http://www.php.net/manual/en/function.curl-setopt.php" rel="nofollow">the manual.</p> <p>To find out what headers you'll need to send, I recommend the http://LiveHTTPHeaders</a> extension. It'll give you the raw headers that will let you learn what's going on. </p> <p>This is a non-trivial task, and you won't find a magic "just do this" answer anywhere.</p> http://stackoverflow.com/questions/1535026/php-post-an-html-form-from-inside-an-iframe-and-redirect-parent/1535048#1535048 1 Answer by Alan Storm for PHP + POST an HTML form from inside an iFrame and redirect parent Alan Storm 2009-10-08T00:56:57Z 2009-10-08T00:56:57Z <p>I think you're looking for <code>target="_top"</code></p> <pre><code>&lt;form action".." target="_top"&gt; &lt;/form&gt; </code></pre> http://stackoverflow.com/questions/411254/what-are-the-differences-between-php-and-java/411650#411650 12 Answer by Alan Storm for What are the differences between PHP and Java? Alan Storm 2009-01-04T20:44:48Z 2009-10-07T17:36:06Z <p>Not an exhaustive list, and I'm PHP developer who did a tour of Java a while back so Caveat Emptor.</p> <p>Every variable in Java needs to be prepended with a data type. This includes primitive types such as boolean, int, double and char, as well as Object data-types, such as ArrayList, String, and your own objects</p> <pre><code>int foo = 36; char bar = 'b'; double baz = 3.14; String speech = "We hold these truths ..."; MyWidget widget = new MyWidget(foo,bar,baz,speech); </code></pre> <p><hr /></p> <p>Every variable can only hold a value of its type. Using the above declarations, the following is not valid</p> <pre><code>foo = baz </code></pre> <p><hr /></p> <p>Equality on objects (not on primitive types) checks for object identity. So the following un-intuitively prints false. Strings have an equality method to handle this.</p> <pre><code>//see comments for more information on what happens //if you use this syntax to declare your strings //String v1 = "foo"; //String v2 = "foo"; String v1 = new String("foo"); String v2 = new String("foo"); if(v1 == v2){ pritnln("True"); } else{ println("False"); } </code></pre> <p><hr /></p> <p>Arrays are your classic C arrays. Can only hold variables of one particular type, need to be created with a fixed length</p> <p><hr /></p> <p>To get around this, there's a series of collection Objects, one of which is named ArrayList that will act more like PHP arrays (although the holds one type business is still true). You don't get the array like syntax, all manipulation is done through methods </p> <pre><code>//creates an array list of strings ArrayList&lt;String&gt; myArr = new ArrayList&lt;String&gt;(); myArr.add("My First Item"); </code></pre> <p>ArrayLists still have numeric keys. There's another collection called HashMap that will give you a dictionary (or associative array, if you went to school in the 90s) like object.</p> <p><hr /></p> <p>ArrayLists and other collections are implemented with something called generics (the &lt;String&gt;). I am not a Java programmer, so all I understand about Generics is they describe the type of thing an Object will operate on. There is much more going on there.</p> <p><hr /></p> <p>Java has no pointers. However, all Objects are actually references, similar to PHP 5, dissimilar to PHP 4. I don't <strong>think</strong> Java has the (depreciated) PHP &amp;reference &amp;syntax. </p> <p><hr /></p> <p>All method parameters are passed by value in Java. However, since all Objects are actually references, you're passing the value of the reference when you pass an object. This means if you manipulate an object passed into a method, the manipulations will stick. However, if you try something like this, you won't get the result you expect</p> <pre><code>public void swapThatWontWork(String v1, String v2) { String temp = var1; var1 = var2; var2 = temp; } </code></pre> <p><hr /></p> <p>It's as good a time as any to mention that methods need to have their return type specified, and bad things will happen if an method returns something it's not supposed to. The following method returns an int</p> <pre><code>public int fooBarBax(int v1){ } </code></pre> <p><hr /></p> <p>If a method is going to throw an exception, you have to declare it as such, or the compiler won't have anything to do with it.</p> <pre><code>public int fooBarBax(int v1) throws SomeException,AnotherException{ ... } </code></pre> <p>This can get tricky if you're using objects you haven't written in your method that might throw an exception.</p> <p><hr /></p> <p>You main code entry point in Java will be a method to a class, as opposed to PHPs main global entry point </p> <p><hr /></p> <p>Variable names in Java do not start with a sigil ($), although I think they can if you want them to</p> <p><hr /></p> <p>Class names in Java are case sensitive.</p> <p><hr /></p> <p>Strings are not mutable in Java, so concatenation can be an expensive operation. </p> <p><hr /></p> <p>The Java Class library provides a mechanism to implement threads. PHP has no such mechanism.</p> <p><hr /></p> <p>PHP methods (and functions) allow you have optional parameters. In java, you need to define a separate method for each possible list of parameters</p> <pre><code>public function inPHP($var1, $var2='foo'){} public void function inJava($var1){ $var2 = "foo"; inJava($var1,$var2); } public void function inJava($var1,$var2){ } </code></pre> <p><hr /></p> <p>PHP requires an explicit $this be used when an object calls its own methods methods. Java (as seen in the above example) does not. </p> <p><hr /></p> <p>Java programs tend to be built from a "program runs, stays running, processes requests" kind of way, where as PHP applications are built from a "run, handle the request, stop running" kind of way.</p> http://stackoverflow.com/questions/1521241/make-curl-write-data-as-it-receives-it/1521297#1521297 1 Answer by Alan Storm for Make cURL write data as it receives it Alan Storm 2009-10-05T17:17:33Z 2009-10-05T17:17:33Z <p>There's an option called CURELOPT_FILE that allows you to specify a file <strong>handler</strong> that curl should write to. I'm pretty sure it will do "right" thing and "write" as it reads, avoiding your memory problem</p> <pre><code>$file = fopen('test.txt', 'w'); //&lt;--------- file handler $ch = curl_init(); curl_setopt($ch, CURLOPT_URL,'http://example.com'); curl_setopt($ch, CURLOPT_FAILONERROR,1); curl_setopt($ch, CURLOPT_FOLLOWLOCATION,1); curl_setopt($ch, CURLOPT_RETURNTRANSFER,1); curl_setopt($ch, CURLOPT_TIMEOUT, 15); curl_setopt($ch, CURLOPT_FILE, $file); //&lt;------- this is your magic line curl_exec($ch); curl_close($ch); fclose($file); </code></pre> 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> http://stackoverflow.com/questions/1632662/how-do-you-clean-up-a-php-project/1632825#1632825 Comment by Alan Storm on How Do You Clean up a PHP Project? Alan Storm 2009-10-27T23:24:23Z 2009-10-27T23:24:23Z That's only going to work for class files that have been included. It's not going to cover anything else. http://stackoverflow.com/questions/1622947/how-session-and-cookie-works Comment by Alan Storm on How session and cookie works? Alan Storm 2009-10-26T04:03:41Z 2009-10-26T04:03:41Z NSD, the original poster clearly doesn't have enough knowledge or context to sift through the myriad answers they're going to find on the subject. That's part of what Stack Overflow is for http://stackoverflow.com/questions/1581559/ascii-library-for-creating-pretty-directory-trees/1581619#1581619 Comment by Alan Storm on ASCII Library for Creating "Pretty" Directory Trees? Alan Storm 2009-10-17T17:10:57Z 2009-10-17T17:10:57Z That's disgustingly awesome, but part of what I like about the output above is how it's not all dashes to the files, you get those pipes connecting subdirectories vertically http://stackoverflow.com/questions/1580520/has-anyone-here-ever-tried-pear Comment by Alan Storm on Has Anyone Here ever tried PEAR Alan Storm 2009-10-16T21:56:09Z 2009-10-16T21:56:09Z And the reason they charge a lot is, email deliverability is a really hard problem to solve. We've gotten to a defacto standard where the legit email has to prove itself legit over all the spam. http://stackoverflow.com/questions/1569221/how-to-uninstall-a-pear-package/1569232#1569232 Comment by Alan Storm on How to uninstall a pear package? Alan Storm 2009-10-14T22:15:53Z 2009-10-14T22:15:53Z Assuming you installed pear into a root only location. It's possible to setup pear to use your local user account (something like ~/PEAR) in which case the sudo isn't needed. http://stackoverflow.com/questions/1564067/problems-with-php-pcre Comment by Alan Storm on Problems with PHP PCRE Alan Storm 2009-10-14T04:58:14Z 2009-10-14T04:58:14Z Asaph, the carrots are being used as the delimiters for the regex. http://stackoverflow.com/questions/1564067/problems-with-php-pcre/1564136#1564136 Comment by Alan Storm on Problems with PHP PCRE Alan Storm 2009-10-14T04:57:11Z 2009-10-14T04:57:11Z The ^ is being used as the two equal symbols. http://stackoverflow.com/questions/1538770/magento-prices-inclusive-of-tax Comment by Alan Storm on magento prices inclusive of tax Alan Storm 2009-10-12T18:36:10Z 2009-10-12T18:36:10Z Almost any customization of Magento requires writing code of some kind, so it belongs here as much as anywhere else. http://stackoverflow.com/questions/1551526/is-it-possible-to-use-a-dynamic-xpath-expression-in-a-xslt-style-sheet/1555958#1555958 Comment by Alan Storm on Is it possible to use a Dynamic xPath expression in a xslt style sheet? Alan Storm 2009-10-12T18:00:33Z 2009-10-12T18:00:33Z Yep, that seems to be the case. It was hard to find someone that would just come out and say it (most articles have a &quot;look what you can do&quot; point of a view, not a &quot;look what you can't). Regarding your suggestion, what tools would let you pass a node-set into an xslt document as a parameter for the transformation? I don't think that's possible with ant, and I'd be curious to see the semantics of tools that do support it. http://stackoverflow.com/questions/1555862/how-can-i-get-php-to-return-500-upon-a-fatal-exception/1555885#1555885 Comment by Alan Storm on how can i get php to return 500 upon a fatal exception? Alan Storm 2009-10-12T17:33:03Z 2009-10-12T17:33:03Z That will catch exceptions, but it won't catch PHP Fatal errors, which are handled outside the scope of exceptions. http://stackoverflow.com/questions/1552342/magento-getting-the-descriptions-from-a-sub-category Comment by Alan Storm on MAGENTO getting the descriptions from a sub category Alan Storm 2009-10-12T04:19:45Z 2009-10-12T04:19:45Z You'll have a lot more luck getting a response if you format your code in a reasonable way.