User Alan Storm - Stack Overflowmost recent 30 from stackoverflow.com2010-02-10T03:16:00Zhttp://stackoverflow.com/feeds/user/4668http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1993597/adding-a-custom-form-element-to-an-adminhtml-form0Adding a Custom Form Element to an Adminhtml FormAlan Storm2010-01-03T01:29:32Z2010-02-04T14:02:45Z
<p>Is there a way to add a custom form element to a Magento Adminhtml form without placing the custom element in the <code>lib/Varian</code> folder?</p>
<p>I've tracked down the code that's essentially a <code>Varian_Data_Form_Element_</code> factory</p>
<pre><code>public function addField($elementId, $type, $config, $after=false)
{
if (isset($this->_types[$type])) {
$className = $this->_types[$type];
}
else {
$className = 'Varien_Data_Form_Element_'.ucfirst(strtolower($type));
}
$element = new $className($config);
$element->setId($elementId);
if ($element->getRequired()) {
$element->addClass('required-entry');
}
$this->addElement($element, $after);
return $element;
}
</code></pre>
<p>So, if I'm reading this correctly, I ensure that an EAV attribute's frontend returns a specific fieldType, (such as <code>supertextfield</code>) and the system will instantiate/render a <code>Varien_Data_Form_Element_Supertextfield</code> when displaying this attribute's editing form.</p>
<p>This is well and good, but it means I need to include my custom form element in the <code>lib/Varian</code> folder hierarchy. Given how module oriented Magento is, it seems like this is doing it wrong.</p>
<p>I realize I could jank around with a custo autoloader or symlinks in the lib, but I'm primarily interested in learning if there's </p>
<ol>
<li><p>A canonical way to add custom form elements for attributes</p></li>
<li><p>A canonical way to customize the Magento autoloader.</p></li>
</ol>
http://stackoverflow.com/questions/2195743/get-order-increment-id-in-magento/2195901#21959010Answer by Alan Storm for Get Order Increment Id in MagentoAlan Storm2010-02-03T22:20:13Z2010-02-03T22:20:13Z<p>Your call to </p>
<pre><code>Mage::getSingleton('sales/order')
</code></pre>
<p>isn't returning an object. Try </p>
<pre><code>var_dump(Mage::getSingleton('sales/order'));
</code></pre>
<p>to confirm. </p>
<p>I haven't dived into the checkout code recently, but I'm pretty sure that's because <code>sales/order</code> will get you the order in progress. Once the order's been placed it's no longer in progress.</p>
<p>The "right" way to do this would be to create an observer for one of the events that Magento fires during checkout. The</p>
<pre><code>checkout_onepage_controller_success_action
</code></pre>
<p>event should be sufficient, assuming you haven't done too much customization of the checkout process. </p>
<p>There's a terse explaination of how to do this on <a href="http://www.magentocommerce.com/wiki/customizing_magento_using_event-observer_method" rel="nofollow">the Wiki</a> (for a different event) </p>
<p>Once you get your event setup and responding, do a </p>
<pre><code>$event = $observer->getEvent();
var_dump($event->getData());
</code></pre>
<p>to see what kind of information you have available. Chances are there's an order object in there which will let you get the ID you're after.</p>
http://stackoverflow.com/questions/2195691/asp-to-php-translator/2195712#21957122Answer by Alan Storm for asp to php translatorAlan Storm2010-02-03T21:46:24Z2010-02-03T21:46:24Z<p>There is no commercially available or open source product that will turn classic ASP pages into PHP. </p>
<p>I've heard of companies rolling their own ASP to PHP compiler internally, but it always relies on keeping yourself to a particular subset of each language and/or external features (PHP Extensions, ASP Components, etc.)</p>
<p>You will not find what you're looking for.</p>
http://stackoverflow.com/questions/2193952/json-encode-remove-quotes-from-keys/2194023#21940231Answer by Alan Storm for json_encode remove quotes from keys?Alan Storm2010-02-03T17:39:38Z2010-02-03T17:39:38Z<p>No, <code>json_encode</code> will not do this for you. The <a href="http://www.json.org/" rel="nofollow">json specification</a> specifcally requires that keys be quoted strings. This is done to ensure that keys which are javascript reserved words won't break the data object.</p>
http://stackoverflow.com/questions/2188629/php-how-to-chain-method-on-a-newly-created-object/2188690#21886903Answer by Alan Storm for PHP: How to chain method on a newly created object?Alan Storm2010-02-02T23:57:16Z2010-02-02T23:57:16Z<p>No, when you're using the </p>
<pre><code>new Classname();
</code></pre>
<p>syntax, you can't chain a method call off the instantiation. It's a limitation of PHP's syntax. Once an object is instantiated, you can chain away.</p>
<p>One method I've seen used to get around this is a static instantiation method of some kind. </p>
<pre><code>class Foo
{
public function xyz()
{
echo "Called","\n";
return $this;
}
static public function instantiate()
{
return new self();
}
}
$a = Foo::instantiate()->xyz();
</code></pre>
<p>By wrapping the call to new in a static method, you can instantiate a class with method call, and you're then free to chain off that.</p>
http://stackoverflow.com/questions/2164732/facebook-application-development-are-there-tutorials-screencasts-etc-that-are3Facebook Application Development: Are there Tutorials, Screencasts, etc. that are Architecture CentricAlan Storm2010-01-29T19:51:45Z2010-01-29T22:30:45Z
<p>Are there any good tutorials that outline proven Architecture patterns for Facebooks applications? Most of the resources I've found in their development documentation are hello world oriented. I'm looking for something (article, book, screencast, etc) that outlines common things that a Facebook application will do, and common, proven , repeatable ways of accomplishing that.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1735534/what-is-the-right-way-to-provide-a-zend-application-with-a-database-handler2What is the "right" Way to Provide a Zend Application With a Database Handler Alan Storm2009-11-14T20:42:09Z2010-01-28T13:53:39Z
<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->db->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/2134617/what-is-a-tnslistener-in-the-context-of-oracle1What is a TNS:listener in the Context of Oracle?Alan Storm2010-01-25T18:36:19Z2010-01-25T22:41:47Z
<p>Borderline ServerFault question, but figured I'd try here first since I've had luck with Oracle questions in the past.</p>
<p>I'm trying to connect to an oracle database from PHP, and I'm getting the following error.</p>
<pre><code>ORA-12505: TNS:listener does not currently know of SID given in connect descriptor
</code></pre>
<p>This is the error that PHP reports, and the error that shows up in Oracle's listener.log.</p>
<p>My immediate problem is fixing this error. The larger question I'd like answered is how does Oracle connection model work?</p>
<p>This is in a development environment that's running on my local windows machine and has been working up until now. Unfortunately, the environment was handed to me (I didn't set it up) and the people who <strong>did</strong> set it up are unavailable to help me debug it. </p>
<p>If I was getting a similar error with MySQL or PostgreSQL (two systems I'm more familiar with), I'd check to ensure that a database process was running, and then attempt to connect manually to the database using the username/password/connection string. Unfortunately, I'm not familiar with the Oracle tools on windows (other than SQL Developer) and I don't know what a TNS:listener or SID are in the context of Oracle (I have vague ideas, but vague ideas rarely help when you're debugging something like this)</p>
<p>Any general advice would be appreciated.</p>
<p><strong>Updates per Comments:</strong></p>
<p>There's a number of entires in my tnsnames.ora file, the relevant entry being</p>
<pre><code>OBS2 =
(DESCRIPTION =
(ADDRESS = (PROTOCOL = TCP)(HOST = steel-ae39650)(PORT = 1521))
(CONNECT_DATA =
(SERVER = DEDICATED)
(SERVICE_NAME = OBS2)
)
)
</code></pre>
<p>This is not reflected in the list of instances when I run</p>
<pre><code> LSNRCTL> services
</code></pre>
<p>So I think my next question is, how do I attempt to manually start up the OBS2 instance?</p>
http://stackoverflow.com/questions/2122380/using-do-block-vs-brackets7Using do block vs brackets {}Alan Storm2010-01-23T06:31:36Z2010-01-23T10:17:51Z
<p>New to ruby, put on your newbie gloves.</p>
<p>Is there any difference (obscure or practical) between the following two snippets?</p>
<pre><code>my_array = [:uno, :dos, :tres]
my_array.each { |item|
puts item
}
my_array = [:uno, :dos, :tres]
my_array.each do |item|
puts item
end
</code></pre>
<p>I realize the bracket syntax would allow you to place the block on one line</p>
<pre><code>my_array.each { |item| puts item }
</code></pre>
<p>but outside of that are there any compelling reasons to use one syntax over the other?</p>
http://stackoverflow.com/questions/2119845/select-over-multiple-databases/2119916#21199160Answer by Alan Storm for Select over multiple databasesAlan Storm2010-01-22T19:34:59Z2010-01-22T19:34:59Z<p>No, there shouldn't be a <strong>signifigant</strong> performance increase from spreading queries across different databases in mysql, assuming that the database are part of the same mysql install. </p>
<p>You'll do better to start with reducing the number of queries per page request, and zeroing in on individual queries that are taking a long time to complete.</p>
http://stackoverflow.com/questions/2119686/sorting-an-array-of-simplexml-objects/2119867#21198672Answer by Alan Storm for Sorting an array of SimpleXML objects Alan Storm2010-01-22T19:26:47Z2010-01-22T19:26:47Z<p>The <code>usort</code> function allows to you tell PHP</p>
<blockquote>
<p>Hey, you! Sort this array I'm giving you with this function I wrote.</p>
</blockquote>
<p>It has nothing specifically to do with SimpleXML. It's a generic function for sorting PHP built-in array data collection.</p>
<p>You need to write a function, instance method, or static method to sort the array. The second argument to usort accepts a <a href="http://www.php.net/manual/en/language.pseudo-types.php#language.types.callback" rel="nofollow">PHP Callback</a>, which is a pseudo-type that lets you specify which function, instance method, or static method.</p>
<p>The function you write will accept two arguments. These will be two different values from your array</p>
<pre><code>function cmp($a, $b)
{
if ($a == $b) {
return 0;
}
if($a < $b) {
return -1;
}
if($a > $b) {
return 1;
}
}
</code></pre>
<p>You need to write this function to return one of three values.</p>
<pre><code>If $a == $b, return 0
If $a > $b, return -1
if $a > $v, return 1
</code></pre>
<p>When you call usort, PHP will run through your array, calling your sorting function/method (in this case <code>cmp</code> over and over again until the array is sorted. In your example, $a and $b will be SimpleXML objects. </p>
http://stackoverflow.com/questions/2119690/what-is-posnr-an-abreviation-or-acronym-for3What is "POSNR" an abreviation or acronym for?Alan Storm2010-01-22T18:58:15Z2010-01-22T19:03:35Z
<p>I'm working with some data that's coming out of an SAP system. There's a field named</p>
<pre><code>POSNR
</code></pre>
<p>that appears to be a line item/database identifier of some kind. What is this an abbreviation for? It's not hyper-critical to what I'm doing, but every time I stare at the word it looks like pure gibberish and can be slightly distracting. </p>
http://stackoverflow.com/questions/2119537/is-there-a-way-to-use-svn-for-web-development-in-a-mac-shop-that-uses-coda/2119563#21195631Answer by Alan Storm for Is there a way to use SVN for web development in a Mac shop that uses coda?Alan Storm2010-01-22T18:36:58Z2010-01-22T18:36:58Z<p>You might want to checkout the <a href="http://groups.google.com/group/coda-users" rel="nofollow">Coda mailing list</a> and ask there. Lots of Coda enthusiasts there with specific experience. </p>
http://stackoverflow.com/questions/2113158/php-merge-full-array-with-empty-array-or-check-isset-first/2113253#21132531Answer by Alan Storm for PHP: Merge full array with empty array or check isset() first?Alan Storm2010-01-21T21:58:47Z2010-01-21T21:58:47Z<p>Return the empty array. Compare the complexity of your two options</p>
<ol>
<li>Return an empty array and merge that with the full one OR</li>
<li>Return null, store the return in a variable, check that variable and THEN merge it if needed.</li>
</ol>
<p>When you write a function, people other than you are going to use it (this includes the you from 6 month forward who has no idea what current you is doing). If you return null, someone using your function needs to know it might not return an array, so anytime they use your function then need to wrap their variables in a lot of <code>is_array</code> or <code>is_set</code> checks. This leads to harder to maintain code down the road, or bugs where it works when your app/system works when an array is returned, but not when a null is returned. If your function always returns an array, people can safely pass it to functions expecting an array. (this is why some advocates of strong type enforcement hate PHP. In a language like Java this doesn't happy because functions <strong>have</strong> return a specific type of thing) </p>
<p>You attention to performance is laudable, but in general the built in array manipulation functions are pretty well tuned, and are only going to bottleneck a small percentage of the time. In day to day code running, the performance benefits of checking the value of the variables and merging in a zero element array are going to be negligible. </p>
<p>Go with the cleaner API, benchmark, and then optimize specific cases where you start seeing a performance problem. </p>
http://stackoverflow.com/questions/2108786/transform-ruby-on-rails-code-to-php/2110946#21109461Answer by Alan Storm for Transform Ruby-on-Rails code to PHPAlan Storm2010-01-21T16:37:35Z2010-01-21T16:37:35Z<p>No, there is no commercial, free, or open source compiler that will take any an arbitrary piece of ruby code and compile it into PHP.</p>
<p>The other answers are suggesting you learn enough ruby-on-rails to create a simple rest framework on top of the existing ruby code, and then use curl (or some other http/web services library) from PHP to fetch and post to URLs in your new simple rails application. These requests would trigger methods in the ruby class, which would run within ruby. There would be no direct eecution of ruby code by the php run time.</p>
<p>My suggestion is you'll spend less time finding payment gateway code written in PHP and using it instead.</p>
http://stackoverflow.com/questions/2088179/how-to-use-a-static-class-method-as-a-filter-for-kohanas-validation-library/2088470#20884702Answer by Alan Storm for How to use a static class method as a filter for Kohana's Validation Library?Alan Storm2010-01-18T18:57:04Z2010-01-18T18:57:04Z<p>A callback is one of PHP's <a href="http://us3.php.net/callback" rel="nofollow">pseudo-types</a>. It will let you pass a</p>
<ol>
<li>function</li>
<li>method of an instantiated object</li>
<li>static method/class method</li>
</ol>
<p>to a PHP function/method that's expecting a callback, and the PHP function/method will know what to do with it.</p>
<p>From the manual</p>
<blockquote>
<p>A PHP function is passed by its name as a string. Any built-in or user-defined function can be used, except language constructs such as: array(), echo(), empty(), eval(), exit(), isset(), list(), print() or unset().</p>
<p>A method of an instantiated object is passed as an array containing an object at index 0 and the method name at index 1.</p>
<p>Static class methods can also be passed without instantiating an object of that class by passing the class name instead of an object at index 0. </p>
</blockquote>
<p>So, to use a static method in place of a callback string, you'd use</p>
<pre><code>array('className','methodName');
</code></pre>
<p>If Kohana is using standard PHP callbacks, this should give you what you want.</p>
http://stackoverflow.com/questions/2084001/calling-a-method-from-within-a-ruby-class-or-is-this-rails-magic1Calling a Method from Within a Ruby Class? (or is this rails magic)Alan Storm2010-01-18T05:03:40Z2010-01-18T16:33:32Z
<p>I'm new to Ruby and working through some tutorials/screencasts. I've reached the section where they're discusisng the <code>before_filter</code> callback, and it's using some syntax that's a little weird for me. I don't know if it's a feature of ruby, of if it's some rails magic, and was hoping someone here could set me straight or point me in the right direction w/r/t the manual</p>
<p>This is a code fragment from the screencast I'm watching</p>
<pre><code>class MachinesController < ApplicationController
#...
before_filter :login_required, :only => [:report]
#...
def index
#etc...
end
def login_required
#etc...
end
end
</code></pre>
<p>In the context of rails, I understand that <code>before_filter</code> is a callback that will fire <code>login_required</code> method when the <code>report</code> action is called. However, it's not clear to me what it is within the context of ruby. In other languages classes typically contain methods, properties, class variables and constants defined within the braces. </p>
<p>However, this looks like its a function call inside the class, and some experiments have show that you can put code in your class definitions and have it called when the program runs. Is this correct? If so, are there special contextual rules for code that's put inline into a class like that? (i.e. would the before_filter function in rails know what class it was called from) If not, what magic is rails doing here?</p>
http://stackoverflow.com/questions/2079711/unable-to-decode-json-stripslashed-string/2079739#20797391Answer by Alan Storm for Unable to decode JSON stripslashed String?Alan Storm2010-01-17T02:15:10Z2010-01-17T02:15:10Z<p>I didn't look at it too deeply, but it looks like your code is</p>
<ol>
<li><p>Taking a PHP Array and turning it into a json string</p></li>
<li><p>Mucking with that string</p></li>
<li><p>Trying to decode the mucked string as json</p></li>
</ol>
<p>Think of it like this</p>
<pre><code>$json_string = json_encode(array("O\'Reiley");
$json_string = stripslashes($json_string);
//it's no longer json, its just some random non-conforming string
var_dump(json_decode($json_string))
</code></pre>
http://stackoverflow.com/questions/2067258/is-there-a-way-to-reassign-this/2067318#20673180Answer by Alan Storm for Is there a way to reassign $this?Alan Storm2010-01-14T20:26:04Z2010-01-14T20:26:04Z<p>I'm pretty sure you can't reassign <code>$this</code>, as it's one of those special things that looks like a variable in PHP, but is treated slightly differently behind the scenes.</p>
<p>If your concerns are the semantics of your method calling getting too long, I'd make <code>load</code> a method call instead of an object property</p>
<pre><code>$this->load()->library('library_name');
public function load()
{
return $this->Five;
}
</code></pre>
http://stackoverflow.com/questions/2059823/php-whats-the-difference-between-global-variables-and-constants/2059879#20598792Answer by Alan Storm for PHP -What's the difference between global variables and constantsAlan Storm2010-01-13T20:11:47Z2010-01-13T20:11:47Z<p>A few things here. </p>
<p>First, the register_globals that you disable in your php.ini refers to an old PHP feature where any variable sent via a query string (GET) or form (GET/POST) would be converted into a global PHP variable. This is the functionality that is (and should be) disabled when you turn off register_globals. Even with this off, you can still define global variables in your application.</p>
<p>In general programming terms, global variables (not PHP's register_globals) are considered "bad" because when you encounter one as a programmer, you have no idea what other parts of the application might be using or changing it, or what effect your changes to that global might have. Also, if you're defining a new global variable, there's a chance you're going to overwriting an existing variable that someone else is relying on. When variables are defined locally (in a single function, or in other languages a single block) you can examine the local scope and usually determine what a change to that variable will do.</p>
<p>Constants, on the other hand, never change. You define them once, and they stay defined and no one can change them. That's why having global constants is considered "less bad" than having global variables.</p>
http://stackoverflow.com/questions/2053178/zend-framework-query-add-to-string/2053198#20531980Answer by Alan Storm for Zend framework query, add to stringAlan Storm2010-01-12T23:17:10Z2010-01-13T00:04:28Z<p>Problem appears to be your if clause, instead of</p>
<pre><code>$x = 0
</code></pre>
<p>you want</p>
<pre><code>$x == 0
</code></pre>
<p>The former is assigning 0 to $x in the if clause, which is almost never what you want.</p>
http://stackoverflow.com/questions/2051577/porting-code-that-used-simplexml-to-dom-in-php/2051636#20516362Answer by Alan Storm for Porting code that used SimpleXML to Dom in PHPAlan Storm2010-01-12T19:13:32Z2010-01-12T19:13:32Z<p>Has your hosting provider disabled SimpleXML, or have thye just disabled the ability of SimpleXML to load files from URLs? The later is far more common than the former, and if it's the later DomDocument may suffer the same fate.</p>
<p>Before you dive too deep into DomDocument, which is a robust put poorly documented API, trying using the curl functions to download your XML, and then use <a href="http://us3.php.net/simplexml_load_string" rel="nofollow">simplexml_load_string</a> to create your SimpleXML object.</p>
<p>If you end up having to go the DomDocument route, you want to <a href="http://www.google.com/search?hl=en&client=firefox-a&rls=org.mozilla%3Aen-US%3Aofficial&hs=a0R&q=domdocument+xpath&aq=f&oq=&aqi=" rel="nofollow">search around for xpath tutorials</a>. It's the most straightforward way to get information out of a DomDocument object.</p>
http://stackoverflow.com/questions/2045791/php-empty-on-get-accessor/2045833#20458335Answer by Alan Storm for PHP empty() on __get accessorAlan Storm2010-01-12T00:02:18Z2010-01-12T01:50:10Z<p>Based on a reading of the <a href="http://php.net/empty" rel="nofollow"><code>empty</code></a>'s manual page and comments (Ctrl-F for isset and/or double underscores), it looks like this is known behavior, and if you want your <code>__set</code> and <code>__get</code> methods and <code>empty</code> to play nice together, there's an implicit assumption that you implement a <code>__isset</code> magic method as well.</p>
<p>It is a little bit unintuitive and confusing, but that tends to happen with most meta-programming, particularly in a system like PHP.</p>
http://stackoverflow.com/questions/2044396/php-mvc-where-to-put-dynamically-generated-javascript1PHP MVC: Where to Put Dynamically Generated JavascriptAlan Storm2010-01-11T19:38:07Z2010-01-11T23:18:46Z
<p>Most PHP MVC systems follow a pattern where a request is routed to a specific controller action, and then the controller sets a bunch of variables for use in the view.</p>
<p>When you're in an agency/services work environment that uses a lot of dynamic HTML for UI elements, this patterns leads to a lot of javascript being generated with view variables</p>
<pre><code><script type="text/javascript">
jQuery(document).ready(function(){
$('#ui-element).init(
{
'param1':<?=$this->param1;?>,
'param2':<?=$this->param2;?>,
}
);
});
</script>
</code></pre>
<p>While this works, I've found it leads to views with a horrible spaghetti mix of HTML, PHP and Javascript. It also offends a certain class of front-end developer who thinks all javascript should be included in external files.</p>
<p>So, what are your patterns/practices to deal with this problem? Specifically, when you want to provide a default set of data for a Javascript widget in a PHP MVC framework, how do you do it while keeping things clean and modular? Is it just a matter of discipline, or <strong>are there specific design patterns</strong> that can force modularity** here, while still giving talented client-side developers a markup centric environment to work in.</p>
http://stackoverflow.com/questions/2045122/can-i-use-an-exception-with-a-database-query/2045135#20451350Answer by Alan Storm for Can I use an exception with a database query?Alan Storm2010-01-11T21:37:27Z2010-01-11T21:37:27Z<p>Yes. You can use an exception almost anywhere you'd traditionally use <code>die/exit</code>.</p>
http://stackoverflow.com/questions/2037886/how-does-posting-query-parameters-in-codeigniter-work/2037907#20379071Answer by Alan Storm for How does posting query parameters in CodeIgniter work? Alan Storm2010-01-10T17:55:54Z2010-01-10T17:55:54Z<p>There may be other ways to go about this, but it looks like CodeIgniter has a <a href="http://codeigniter.com/user_guide/libraries/uri.html" rel="nofollow">URI Class</a> that will allow you to retrieve specific segments of your URI. So something like</p>
<pre><code>$id = $this->uri->segment(3); //from a controller, I assume
</code></pre>
<p>should get you what you want. </p>
<p>It also <a href="http://codeigniter.com/user_guide/general/controllers.html#passinguri" rel="nofollow">looks like</a> CodeIgniter will take additional URI parameters and pass them through as parameters to your action function.</p>
<pre><code>#http://example.com/index.php/products/shoes/sandals/123
class Products extends Controller {
function shoes($sandals, $id)
{
echo $sandals;
echo $id;
}
}
</code></pre>
http://stackoverflow.com/questions/2022544/can-i-use-stdclass-like-an-array/2022630#20226301Answer by Alan Storm for can i use stdClass like an array?Alan Storm2010-01-07T18:29:00Z2010-01-07T18:29:00Z<p>No, you can't. Using the brackets (<code>[]</code>) like that is called "ArrayAccess" in PHP, and is not implemented on the <code>stdClass</code> object.</p>
<p>It sounds like you <strong>might</strong> want something like</p>
<pre><code>$foo = new stdClass();
$foo->items = array();
$foo->items[] = 'abc';
$foo->items[] = '123';
$foo->items[] = 'you and me';
</code></pre>
<p>You could also try casting an array as a stdClass to see what happens.</p>
<pre><code>$foo = array();
$foo[] = 'abc';
$foo[] = '123';
$foo[] = 'you and me';
$foo = (object) $foo;
var_dump($foo);
</code></pre>
http://stackoverflow.com/questions/2001090/is-it-worth-learning-php-classes/2001139#20011390Answer by Alan Storm for Is it worth learning PHP classes?Alan Storm2010-01-04T18:10:03Z2010-01-04T18:10:03Z<p>Yes, it's worth learning. While you can "build almost anything, given the right plans and enough info.", most businesses don't have time to come up with the right plans and enough information, and instead rely on reusing existing code/projects to implement a lot of core functionality. Going forward most of these projects are going to involve some for of classes and Object Oriented Programming. </p>
<p>While you find procedural code more readable, someone trained in a Computer Science program finds class based code more readable. So yes, it's worth learning, because you'll need to understand other people's code and they'll be using classes.</p>
http://stackoverflow.com/questions/1993597/adding-a-custom-form-element-to-an-adminhtml-form/1996066#19960660Answer by Alan Storm for Adding a Custom Form Element to an Adminhtml FormAlan Storm2010-01-03T19:46:40Z2010-01-03T19:46:40Z<p>Self help desk strikes again. It looks like Magento sets up include paths in such a way that you can drop class files from lib (not just from the Mage_ namespace) in your local code branch</p>
<pre><code>app/code/local/Varien/etc
</code></pre>
<p>When the autoloader tries to load a lib/Varien class, it will check your directory first. This still puts you at risk if Varien ever creates a data element with the same name as yours, but as risks go it's relatively low.</p>
http://stackoverflow.com/questions/1167988/using-sqlsrv-connect-on-platforms-other-than-windows1Using sqlsrv_connect on Platforms other than Windows Alan Storm2009-07-22T20:18:03Z2009-12-31T13:03:03Z
<p>I've inherited some code that uses the <code>sqlsrv_connect</code> method to instantiate a connection to a SQL Server database. My personal development machine is an OS X box that I'm running apache an PHP on. I have an instance of SQL Server running in a virtual machine.</p>
<p>When I attempt to connect to the database, I get the following error.</p>
<pre><code>Fatal error: Call to undefined function sqlsrv_connect() in ...
</code></pre>
<p>It appears that <code>sqlsrv_connect</code> is not part of standard PHP, and is part of a driver that ships with <a href="http://msdn.microsoft.com/en-us/library/cc296161(SQL.90).aspx" rel="nofollow">SQL Server 2005</a>. (please correct me if I'm wrong here)</p>
<p>Is there a way to use this function on Non-Windows platforms? I realize I could install/build an Apache/PHP instance on my Windows machine, but if there's a way to get this function working on OS X (or other *nixes) I'd prefer it. </p>
http://stackoverflow.com/questions/2188629/php-how-to-chain-method-on-a-newly-created-object/2188690#2188690Comment by Alan Storm on PHP: How to chain method on a newly created object?Alan Storm2010-02-03T03:09:25Z2010-02-03T03:09:25ZI prefer to leave the OO lingo out of the answer when the questioner doesn't appear to be steeped in CS culture. Better they learn the concept and later identify it by its "proper" name than be scared off by new terms.http://stackoverflow.com/questions/2134617/what-is-a-tnslistener-in-the-context-of-oracle/2134677#2134677Comment by Alan Storm on What is a TNS:listener in the Context of Oracle?Alan Storm2010-01-25T22:42:00Z2010-01-25T22:42:00ZYeah, there's clearly terminology issues going on here. In MySQL you might have a <b>database</b> named Foo that contains two tables named bar and baz. http://stackoverflow.com/questions/2134617/what-is-a-tnslistener-in-the-context-of-oracle/2134677#2134677Comment by Alan Storm on What is a TNS:listener in the Context of Oracle?Alan Storm2010-01-25T22:04:37Z2010-01-25T22:04:37ZSo, I think what's confusing me here is how can one oracle database be up, but another cannot. That is, when I listed the services I saw the other databases (OBS3, OBS4 etc.) were up. Are all the databases controlled by OracleServiceOBS2, or does each database get its own OracleServiceOBS2? (apologies if this isn't making sense, bu I don't know what I don't know here!)http://stackoverflow.com/questions/2134617/what-is-a-tnslistener-in-the-context-of-oracle/2134677#2134677Comment by Alan Storm on What is a TNS:listener in the Context of Oracle?Alan Storm2010-01-25T20:52:45Z2010-01-25T20:52:45ZUpdated question with relevant info. It looks like the relevant TNS entry isn't reflected in the listener. Is there a way to manually start a TNS instance? Also possible relevent; If I use dbca and attempt to "Confgiure Database Options" for the database/schema (right term?) in question, I get the following error: ORA-02778: Name given for the log directory is invalid. I've solved my problem by creating a new database and importing a recent dump, but I'd still be interested in any debugging techniques for this kind of thing.http://stackoverflow.com/questions/2122380/using-do-block-vs-brackets/2122457#2122457Comment by Alan Storm on Using do block vs brackets {}Alan Storm2010-01-23T18:09:29Z2010-01-23T18:09:29ZAh, got it. So because of the precedence order, when you use do, you're passing the block as an additional parameter, but when you use the brackets you're passing the block as the first parameter of the results of the method invocation(s) to the left.http://stackoverflow.com/questions/2084001/calling-a-method-from-within-a-ruby-class-or-is-this-rails-magicComment by Alan Storm on Calling a Method from Within a Ruby Class? (or is this rails magic)Alan Storm2010-01-23T04:00:16Z2010-01-23T04:00:16ZSarah's answer is great, but it's to a question I didn't ask. I was confused by the calling of methods inside of a class, something you can't do in PHP or Java. I wanted to know if that was some rails magic, or if ruby supported that, and if Ruby supported that, what was different w/r/t calling code from within a class. Jonathan answered that, explaining how self changed identity. http://stackoverflow.com/questions/2119690/what-is-posnr-an-abreviation-or-acronym-for/2119721#2119721Comment by Alan Storm on What is "POSNR" an abreviation or acronym for?Alan Storm2010-01-22T21:58:16Z2010-01-22T21:58:16ZAh, right, I always forget the german connection. http://stackoverflow.com/questions/2119690/what-is-posnr-an-abreviation-or-acronym-for/2119721#2119721Comment by Alan Storm on What is "POSNR" an abreviation or acronym for?Alan Storm2010-01-22T19:05:50Z2010-01-22T19:05:50ZYep, that definitely looks like the role its playing in these feeds. Of course, I don't see the letter P in there :)http://stackoverflow.com/questions/2119690/what-is-posnr-an-abreviation-or-acronym-for/2119700#2119700Comment by Alan Storm on What is "POSNR" an abreviation or acronym for?Alan Storm2010-01-22T19:03:31Z2010-01-22T19:03:31Z+1 for agreeing with my best guess so farhttp://stackoverflow.com/questions/498279/going-to-a-random-page-php/498302#498302Comment by Alan Storm on Going to a Random page PHPAlan Storm2010-01-22T16:50:42Z2010-01-22T16:50:42ZWas just copying the original poster's code.http://stackoverflow.com/questions/2105231/yahoo-finance-vs-google-finance-apiComment by Alan Storm on Yahoo Finance vs. Google Finance APIAlan Storm2010-01-20T22:02:40Z2010-01-20T22:02:40ZSort of confused how asking for comparisons between two programming APIs for retrieving financial data isn't programming related.http://stackoverflow.com/questions/2103773/php-mysql-real-escape-string-cuts-whole-string/2103785#2103785Comment by Alan Storm on PHP mysql_real_escape_string "cuts" whole stringAlan Storm2010-01-20T18:27:36Z2010-01-20T18:27:36ZThis is the best canidate BUT if this is the problem, $search should contain a boolean false, and not null as reported in the original question. (which may be a problem with the question)http://stackoverflow.com/questions/2103773/php-mysql-real-escape-string-cuts-whole-stringComment by Alan Storm on PHP mysql_real_escape_string "cuts" whole stringAlan Storm2010-01-20T18:17:52Z2010-01-20T18:17:52ZDoes var_dump report $search and a null or as a boolean flase?http://stackoverflow.com/questions/2084001/calling-a-method-from-within-a-ruby-class-or-is-this-rails-magic/2084051#2084051Comment by Alan Storm on Calling a Method from Within a Ruby Class? (or is this rails magic)Alan Storm2010-01-18T19:49:15Z2010-01-18T19:49:15ZMakes perfect sense Jörg, its just a different way of thinking about your code when you're coming from a more boring/traditional space.http://stackoverflow.com/questions/2084001/calling-a-method-from-within-a-ruby-class-or-is-this-rails-magic/2084039#2084039Comment by Alan Storm on Calling a Method from Within a Ruby Class? (or is this rails magic)Alan Storm2010-01-18T08:01:59Z2010-01-18T08:01:59ZAh, I hadn't encountered the self keyword yet or learned how to define static/class methods. This makes a lot more sense now (but is still hugely weird)