User AlexanderJohannesen - Stack Overflowmost recent 30 from stackoverflow.com2010-03-19T07:48:53Zhttp://stackoverflow.com/feeds/user/45944http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/2400045/hooks-exactly-what-they-are/2400206#24002061Answer by AlexanderJohannesen for Hooks...exactly what they areAlexanderJohannesenhttp://stackoverflow.com/users/459442010-03-08T09:04:46Z2010-03-08T09:24:01Z<p>Hooks are, indeed, hooks into an event stack of sorts; a list of values some controller iterates over, and if you have anything registered to that event, the controller can run your custom code. But PHP itself doesn't have anything (useful) like that, so you make it yourself or use the ones you find in your favorite application / system. It's a fairly common way to create a plugin architecture, but can also be used for application control and other things. I've written earlier about <a href="http://shelter.nu/blog/2009/07/ok-so-let-me-say-from-get-go-that-im.html" rel="nofollow">my quest</a> for a more <a href="http://shelter.nu/blog/2009/08/what-event-model-ontology.html" rel="nofollow">universal event and operating set of stack events</a>, including <a href="http://stackoverflow.com/questions/1187537/application-mvc-event-model">this post here on StackOverflow</a>.</p>
<p>As others have mentioned, PHP is stateless, so where I use them I use them as a simple execution list, and hook every part of my application into it. This way I'm very extensible, and have a basis for a plugin stack as well. (And I'll release it one magical day when I'm bored or retired or just got too much time on my hands, etc.)</p>
<p>You'll find similar stacks and hooks in, for example, WordPress, so a plugin that deals with, say, CSS, will hook itself to the CSS_DEFINITION_EVENT (basically, that part of the WordPress application that writes CSS stuff into the HTML section). This stuff is everywhere. In PHP it only applies (well, mostly) to the limits of the request you get per PHP page (unless you're doing PHP outside the webserver), but all major operating systems, applications, frameworks and systems have some form of event stack. PHP just doesn't have one (seriously) built in.</p>
http://stackoverflow.com/questions/1857556/what-should-i-learn-over-christmas-break/1857921#18579213Answer by AlexanderJohannesen for What should I learn over Christmas break?AlexanderJohannesenhttp://stackoverflow.com/users/459442009-12-07T05:07:31Z2009-12-07T05:07:31Z<p>I'm going to offer up something very different. It's <em>not</em> programming as such, but it will affect you deeply further down the line, no matter what language, environment, or compiler you use, whatever job you have, no matter what you venture doing;</p>
<p><a href="http://en.wikipedia.org/wiki/Epistemology" rel="nofollow">Epistemology</a>.</p>
<p>Yeah, I know; wishy-washy weird philosophy stuff, but all paths, as they say, lead to Rome (<em>except, of course, that they don't</em>). In this case, a better understanding of something they won't teach you at Uni/College unless you ask for something completely different and inherently useless (ie. lectures in philosophy), well, it will probably prove priceless when you need it.</p>
<p>Human knowledge is the game we're playing here; there is no program you'll ever create that hasn't got the basic premise of human knowledge and of identity at hand. Sure, we create, consume and kill off files and memory at an alarming rate, all in the name of "getting the job done", but there's of course a huge gap between getting the job done and getting it done right.</p>
<p>Time and time again I bump my programming head against the brick wall of digital identity management, a field in which we try to link things in the real world with things in the virtual world. What else is computing about, right? So, an object over here is supposed to represent a thing over there in the real-world, but how do we know they are the same? (The Semantic Web and Topic Maps communities are filled to the brim of trying to figure that conundrum out) There's an epistemological term 'representialism' which is a handy search-word here, of course. But I challenge you to see if you can find a reasonable, fast, and elegant solution to the real-virtual identity problem. (I've written a few tomes on the subject myself, and it isn't as easy as first thought, all the more we need a new set of fresh eyes on it)</p>
<p>I'd probably start with something slight more concrete such as <a href="http://en.wikipedia.org/wiki/Knowledge%5FManagement" rel="nofollow">Knowledge management</a>, which is really about making our computer systems more adapted to human behavior and needs (rather than the opposite of treating them as basic tools), and possibly dip your toe in user experience fields (has a lot of cool cognitive sciences involved) by reading "<a href="http://www.sensible.com/chapter.html" rel="nofollow">Don't make me think</a>" by Steve Krug at the same time. Learning about usability and understanding its importance is probably better now than any failed project down the line.</p>
<p>If you're brave you could venture down the path of '<a href="http://shelter.nu/blog-102.html" rel="nofollow">Women, fire and dangerous things</a>' by Lakoff for more understanding of how we humans categorize, how are languages are built up, and postulate from that how are computer systems are supposed to work if we don't use the underpinnings of linguistic knowledge to create them? Tags without control are just as bad as words by themselves, or a counted tag cloud. Controlled vocabularies are just as bad as any pointed identification mark. They're just two opposites of what we really want, what we really need. And that might just be a fun mind exercise for 4-5 weeks?</p>
<p>Also, learn early that with all things, <a href="http://shelter.nu/blog/2006/05/it-depends.html" rel="nofollow">it depends</a>. None of these things are about programming, but they all are about <em>why</em> we program. Good luck.</p>
http://stackoverflow.com/questions/1542961/isolating-part-of-a-url-with-php/1543147#15431470Answer by AlexanderJohannesen for isolating part of a url with phpAlexanderJohannesenhttp://stackoverflow.com/users/459442009-10-09T11:03:10Z2009-10-09T11:03:10Z<p>My answer will be slightly longer. It looks like you want to do something similar to using <a href="http://bitworking.org/news/URI%5FTemplates" rel="nofollow">URI Templates</a>, so here's a snippet of two functions from a class (called xs_Breakdown) I have that does these things. It could easily be extended to include wildcards and conditional behaviour (on the todo list for a time in the future I'm suffering from too little to do). First, and example of setting up and use ;</p>
<pre><code> $br = new xs_Breakdown ( '{first}/{second}/{third}/{fourth}/{fifth}/{andsoon}' ) ;
// Pick out the template variable called 'third'
$third = $br->third ;
</code></pre>
<p>The code (just the basics which should be enough to kick up some of your own dust; all the code would be too long to post here. Pop me a message if you'd like the whole shebang with three nested property / Java Bean-like classes) ;</p>
<pre><code>// Static variable to hold our tokens
$_tokens = null ;
// Input path (set in constructor)
$_path = null ;
// Results here
$values = array() ;
function parse ( $schema = '' ) {
// Sanitize input data : Regular Expression
$regexp = '/[^a-z0-9 +\-\/!$*_=|.:]/i' ;
// Break our path into little bits
$break = explode ( '/', $this->_path ) ;
// Find the tokens used from our schema template
$this->_tokens = $this->getSubStrs ( "{","}", $schema ) ;
// Loop through the path elements
foreach ( $break as $key => $value ) {
// Sanitize the value of the element
$value = urldecode ( trim ( preg_replace ( $regexp, '', $value ) ) ) ;
// Element not blank? (Meaning, real text)
if ( $value != '' )
// Index it!
@$this->values[$this->_tokens[$key]] = $value ;
}
}
function getSubStrs ( $from, $to, $str, &$result = array () ) {
if ( strpos ( $str, $from ) !== false ) {
$start = strpos ( $str, $from ) + 1 ;
$end = strpos ( $str, $to ) - 1 ;
$item = substr ( $str, $start, $end - $start + 1 ) ;
$rest = substr ( $str, $end + 2 ) ;
$result[] = $item ;
$this->getSubStrs ( $from, $to, $rest, $result ) ;
}
return $result ;
}
</code></pre>
http://stackoverflow.com/questions/784461/how-do-you-clear-your-mind-after-8-10-hours-per-day-of-coding/784519#784519252Answer by AlexanderJohannesen for How do you clear your mind after 8-10 hours per day of coding?AlexanderJohannesenhttp://stackoverflow.com/users/459442009-04-24T04:23:57Z2009-08-15T05:12:23Z<p>Funny you should bring this up, because I have the same problem, and I have actually devised a technique that works really well for me. I use the last 5 minutes of my day to write myself a debrief note for the next day. This will do three important things;</p>
<ol>
<li><p>It takes your mind off the complexities as the debriefing will be a short form of all the things you've worried about, and helps clear the mind of all the what-if things.</p></li>
<li><p>If your mind has a long down-settling time, the debrief note is the perfect place to use for a central of "things I forgot about" or should note somewhere. The debrief note becomes a knowledge central for whatever you did that day.</p></li>
<li><p>It focuses your mind on the real issues. One thing is to clear the mind, another is to let it keep going, but more focused. So even if your conscious mind is letting go, it's probably a good idea to let your unconscious mind keep churning at the problems, and a good way to help your mind do this is to be slightly futuristic in your notes (thoughts on direction, for example).</p></li>
</ol>
<p>Here's a real example from my note yesterday (with some notes in brackets) ;</p>
<ul>
<li><p>Struggled with the new simplified data model for Topic Maps integration as recursive key/value pairs don't always explain complex relationships, but think that the added 'scope' column handles most if not all of my use cases. I feel I've reached a good place where some heavy coding can take place. Enough thinking, more doing. (Helps me get a feel for what I was doing, what I struggled with especially, and that it's about my feelings. Feelings is actually important in trying to make the brain settle.)</p></li>
<li><p>Implemented the dreaded global stack which seems to be working fine. (Focus your fears and worries where it belongs. 'Dreaded' prepares me for uglies in the future)</p></li>
<li><p>Talked with ZZZ about banners for the front page, and can probably do this through the Index Front Controller the easiest. (Put down some thoughts you've had on upcoming work. Once down on 'paper', out of mind)</p></li>
</ul>
<p>And so on. I never have more than 3 to 5 notes on any day. If you feel there's more issues, try to classify them into 3 to 5 notes anyway. Anything more than that will freak your mind, and you're back to square one. :)</p>
<p>An added bonus of this is that this is, in fact, a developer's log, which many, many would recommend. After a while these notes will be so good they fit into release notes as well. Practice, practice, practice. </p>
<p>Good luck, and tell us what you came up with (a debrief note, if you will :).</p>
http://stackoverflow.com/questions/1187537/application-mvc-event-model1Application / MVC Event ModelAlexanderJohannesenhttp://stackoverflow.com/users/459442009-07-27T10:45:23Z2009-08-04T09:36:08Z
<p><strong>Update:</strong> This question was inspired by my larger quest for mapping ontologically the whole software systems architecture enchilada. <a href="http://shelter.nu/blog/2009/07/ok-so-let-me-say-from-get-go-that-im.html" rel="nofollow">I've written a blog post about it</a>, and hopefully it will help clarify what I'm after.</p>
<p><hr /></p>
<p>Many, many, many frameworks and stacks that's event-driven have too much variation for my little head to get around. Is there somewhere some resources that defines the outline of a reasonable Application Event Model, what events there are, and what triggers are most common?</p>
<p>I've got my own framework with a plugin and event-driven architecture, but I want to open-source it, and as such would like to make it closer to some common ground as not to alienate people.</p>
<p>So to clarify; this is for an application, meaning setting up the environment, the dependencies, the data sources (like databases), and being a MVC framework setting up the model, the view, launching controllers / actions, and in the GUI various stages of the interface (header, content, columns, etc.).</p>
<p>Ideas? Thoughts? Pointers? (And I've made it language and platform neutral at this point)</p>
http://stackoverflow.com/questions/969426/jquery-plugin-or-otherwise-js-or-amazing-alternative-like-flash-for-tree-edi0JQuery plugin (or otherwise JS [or amazing alternative, like Flash]) for tree editor?AlexanderJohannesenhttp://stackoverflow.com/users/459442009-06-09T11:12:56Z2009-06-09T13:00:55Z
<p>I'm tearing my hair out on this one; I want / need / would like something akin to one of the many tree viewers out there, but where I can also edit the structure, the name and the type of nodes (the world doesn't <strong>just</strong> have folders and files, people). I've Googled myself silly over this, looked at which plugin I could modify to do my bidding (not with much luck), but surely someone, somewhere must have had the need for an <strong>editor</strong> and not just a viewer? Surely someone must have more complex needs, like me?</p>
<p>The best one so far seems to be the <a href="http://jquery.bassistance.de/treeview/demo/" rel="nofollow">one from Bassistance</a>, but without the good editing part (just basic stuff). Is this the one I should extend, maybe?</p>
<p>I'm not married to JQuery, but the rest of my application use it and it would be the simplest, but if there's a Flash or other JS thing floating around, I'm cool. Input and output should be sane, and if you got a SQL backend, that's cool, too, but JSON or XML or whatever else that makes sense, er, makes sense.</p>
<p>Thoughts? Clues? Suggestions?</p>
http://stackoverflow.com/questions/923588/is-being-restful-that-important/923730#9237306Answer by AlexanderJohannesen for Is being RESTful that important?AlexanderJohannesenhttp://stackoverflow.com/users/459442009-05-28T23:36:14Z2009-05-29T00:10:05Z<p>As a <a href="http://www.infoq.com/articles/rest-introduction" rel="nofollow">die-hard RESTafarian</a> I'd say use HTTP (the REST protocol in question) to its full extent. Why? Well, I'll show you two snippets from an email exchange I had yesterday with a good friend of mine who's seriously clever (and used to be a professor of IT, still lectures, still kicks ass wherever he goes) ;</p>
<blockquote>
<p>Yesterday I passed an important
milestone for my mappodrhom<br />
application: I can now launch
long-running background computations<br />
into a worker pool. When they finish,
the workers POST back their results
directly into the REST resources.
Which triggers more background
processing, all controlled by a
dependency graph.</p>
<p>And the interesting aspect is that
this RESTful backgrounding is<br />
actually independent from my
particular application. But I am<br />
currently too tired to completely
grasp the consequences :-)</p>
</blockquote>
<p>The consequences in question are huge (it's a REST framework with lots of little stacks and events and services and apps, all with their own discoverable URIs, all with the same unified interface), and in terms of extensibility and scalability it is simply unmatched in its simplicity. If your application is a dinky little thing that will never travel places or meet hot chicks, yeah maybe you don't need it. But then, I've said the same, and all of a sudden found myself on a train to Paris with a cute girl that is a secret spy for the Russians, and well, one thing led to another...</p>
<p>Here's my reply, with some of my own experiences ;</p>
<blockquote>
<p>I think this sounds (pardon my French)
f***ing awesome! I'm experiencing
similar things with my own REST stuff,
where because the middle layer is so
thin and transparent, I can just
extend things the way I need them
without worrying too much about the
infra-structure. It's such a freedom,
such a kick-ass cool thing that my
brain is about explode, and a
worrisome curiosity to why more aren't
doing it?</p>
</blockquote>
<p>In short, doing REST <a href="http://www.innoq.com/blog/st/2007/04/19/rest%5Fis%5Fnot%5Fcrud.html" rel="nofollow">only half-way</a> is just like not really doing it at all. You're just shifting your stuff over a different pipeline, missing out on a simplified API into a state-machine, semantics- and implementation decoupling at the core, working with the principles that built the net (and hence I'd say you've got rather proven ideas behind you), the unified interface, and having URIs as part of your modeling.</p>
<p>I know it's popular to say that you can pick and choose, that it's all just options. It's not. <a href="http://www.infoq.com/articles/tilkov-rest-doubts" rel="nofollow">REST only makes sense</a> by using it fully, but as to convincing you to actually stretch your brain a bit further and do something clever, I can only dare you to cut through the FUD (that it's all about RPC, only GET and POST necessary, you don't need it all, equivalent to JSON, SOAP and other ilk, etc.), and be smarter about how you make applications. <strong>Yeah, I dare you all!</strong></p>
http://stackoverflow.com/questions/923597/which-tools-do-you-use-to-analyze-text/923772#9237721Answer by AlexanderJohannesen for Which tools do you use to analyze text?AlexanderJohannesenhttp://stackoverflow.com/users/459442009-05-28T23:50:52Z2009-05-28T23:50:52Z<p>Hiya. I'd first look to <a href="http://www.opencalais.com/" rel="nofollow">OpenCalais</a> for finding entities within texts or input. It's great, and I've used it plenty myself (from the Reuters guys). </p>
<p>After that you can analyze the text further, creating associations between entities and words. I'd probably look them up in something like <a href="http://en.wikipedia.org/wiki/WordNet" rel="nofollow">WordNet</a> and try to typify them, or even auto-generate some ontology that matches the domain you're trying to map.</p>
<p>As to how to pull it all together, there's many things you can do; the above, or two- or three-pass models of trying to figure out what words are and mean. Or, if you control the input, make up a format that is easier to parse, or go down the <a href="http://en.wikipedia.org/wiki/Natural%5Flanguage%5Fprocessing" rel="nofollow">murky path of NLP</a> (which is a lot of fun).</p>
<p>Or you could look to something like <a href="http://jena.sourceforge.net/" rel="nofollow">Jena</a> for parsing arbitrary RDF snippets, although I don't like the RDF premise myself (I'm a Topic Mapper). I've written stuff that looks up words or phrases or names in WikiPedia, and rate their hitrate based on the semantics found in the WikiPedia pages (I could tell you the details more if requested, but isn't it more fun to work it out yourself and come up with something better than mine? :), ie. number of links, number of SeeAlso, amount of text, how big the discussion page, etc.</p>
<p>I've written tons of stuff over the years (even in PHP and Perl; look to <a href="http://search.cpan.org/~drrho/" rel="nofollow">Robert Barta's Topic Maps stuff on CPAN</a>, especially the TM modules for some kick-ass stuff), from engines to parsers to something weird in the middle. Associative arrays which breaks words and phrases apart, creating cumulative histograms to sort their components out and so forth. It's all fun stuff, but as to shrink-wrapped tools, I'm not so sure. Everyones goals and needs seems to be different. It depends on how complex and sophisticated you want to become.</p>
<p>Anyway, hope this helps a little. Cheers! :)</p>
http://stackoverflow.com/questions/910324/asking-for-opinions-about-scathing-jquery-critique/910424#9104248Answer by AlexanderJohannesen for Asking for opinions about scathing jQuery critiqueAlexanderJohannesenhttp://stackoverflow.com/users/459442009-05-26T12:28:49Z2009-05-26T12:43:49Z<p>Hmm, I'd rather trust my years of using JQuery and the thousands of happy campers using it over some nitpicking twit who thinks he knows better. From what I could see a lot of his criticism is quite specific (like the use of Match, for example, which is totally lame) about effecincy and optimizing code, but is completely lacking the shere amount of magic needed to support the amount of browser quirks and bugs to even do a fraction of what JQuery offers. Oh, and Jquery has got years of baggage, so yes there will be some warts.</p>
<p>Let's look at this alternative JavaScript library. The initial page says, literary, "I hate libraries, so I created a library." Further it whinces about browser sniffing, and claims itself to only do feature sniffing. Mate, that's how a lot of them in fact do the browser sniffing. It goes on to say that getting tangled in APIs are stupid, and goes on to present its, um, API. Yeah, it's a bit silly, but I'm sure it's all for a good cause?</p>
<p>Digging into the actual API I'm struck by a somewhat lacking set of semantics that goes with a framework approach to the browser jungle, and it is missing the crucial part that made JQuery such a success; good selectors into the DOM. It may do the job (of which there is no documentation; what does it actually help me with? Just cross-browser DOM access, what? What else?) but I need consistancy and elegance (although this latter is somewhat subjective, of course). It's glaringly lacking of examples, demos or anything, has no obvious plugin architecture.</p>
<p>It may be a purists library, but unfortunately the real world is beckoning me out of the elite cloud. I'd take the whole thing with a pinch of salt (what version did he test? Did he approach the developer(s) first to ask why some things were the way they were?), and I'm remembering some wise words by none other than StackOverflow firestarter Joel, that all those little pieces of seemingly crazy or obtruse code in fact is what your system has gained of knowledge about browsers, platforms, OSes, compilers, versions, code, etc. What may look like a purists worst nightmare might, in fact, just be working code.</p>
<p>Oh, and reading through the comments to his initial post reveals that he is an arrogant prick who tells anybody not agreeing with him that they are useless, know nothing, incompetent and a whole lot more niceties. Classy.</p>
<p>Anyway, back to hacking my own Topic Maps engine instead of using someone else's. :)</p>
http://stackoverflow.com/questions/896323/does-an-overloaded-get-need-to-manage-all-member-variables/896355#8963550Answer by AlexanderJohannesen for Does an overloaded __get need to manage all member variables?AlexanderJohannesenhttp://stackoverflow.com/users/459442009-05-22T04:32:34Z2009-05-22T04:32:34Z<p>Well, your code would fail on private items not set in your array. But then again, you can use this as a way to deal with what's in and out of your array, as such ;</p>
<pre><code> function __get($item){
if ( isset ( $collection[$item] ) )
return $collection[$item];
else {
try {
return $this->$item ; // Dynamically try public values
} catch (Exception $e) {
$collection[$item] = 0 ; // Make it exist
}
}
}
</code></pre>
<p>Classes that inherit your calls will use this __get(), but can be overridden, so use parent::__construct() for explicity. Also note that these cannot be static. <a href="http://ca.php.net/manual/en/language.oop5.overloading.php#language.oop5.overloading.members" rel="nofollow">Further reading</a>.</p>
http://stackoverflow.com/questions/895812/which-is-better-for-a-dependency-web-service-vs-xml/896010#8960100Answer by AlexanderJohannesen for Which is better for a dependency: Web Service vs XML?AlexanderJohannesenhttp://stackoverflow.com/users/459442009-05-22T01:11:00Z2009-05-22T01:11:00Z<p>For this I'd choose to get an Atom feed, from which you can take the benefits of HTTP for caching and updating, and is also a valid XML feed. This way you don't have to process more data than what you actually need. XML dumps can be terrible for updates, analysis and implementation, while WebServices are terrible in general as you need to grok the WS-* stack of standards until your requirements are met (and possibly pollute your development environment with tools you rarely need). Alternatively I'd ask for a basic REST interface into the data, say one URL pr. day of updates or whatever you think you need.</p>
http://stackoverflow.com/questions/820173/referencing-for-element-in-a-php-array/820202#8202022Answer by AlexanderJohannesen for Referencing for element in a PHP arrayAlexanderJohannesenhttp://stackoverflow.com/users/459442009-05-04T13:54:24Z2009-05-04T13:54:24Z<p>You can always do ;</p>
<pre><code>$array = array_values($array);
</code></pre>
<p>And now $array[0] will be the correct answer.</p>
http://stackoverflow.com/questions/801714/elegant-way-to-view-hierarchical-data-in-a-web-application/801968#8019682Answer by AlexanderJohannesen for Elegant way to view hierarchical data in a web applicationAlexanderJohannesenhttp://stackoverflow.com/users/459442009-04-29T11:42:31Z2009-04-29T11:42:31Z<p>Well, for a JavaScript example of nested forms (with heaps of editing and display options), there's <a href="http://www.trirand.com/jqgrid/jqgrid.html" rel="nofollow">the jqGrid Demos</a>. Look under <strong>Examples -> Advanced -> Subgrid</strong> for one such example.</p>
<p>But yes, there's no one true way to solve this one, but when I come up with it I'll let you know. :)</p>
http://stackoverflow.com/questions/788872/php-text-parsing-and-or-make-your-own-language1PHP text parsing and / or make your own language?AlexanderJohannesenhttp://stackoverflow.com/users/459442009-04-25T12:56:25Z2009-04-29T11:38:01Z
<p>Been Googling around without finding much at all, so does anyone know of a class or library that helps you parse any sort of language, like a <a href="http://en.wikipedia.org/wiki/Domain-specific%5Fprogramming%5Flanguage" rel="nofollow">Domain Specific Language</a> (I'm creating one, so I'm flexible in what the syntax and format can be) into either PHP code or some helpful struct or a class hiearchy or ... ? Anything goes at this point. :)</p>
<p>I want to experiment with parsing text files into tokens, building up a small grammar and syntax library to express things like <a href="http://bnl.jayfields.com/01%5Fintroduction.html" rel="nofollow">Business Natural Languages</a>.</p>
http://stackoverflow.com/questions/801475/sql-design-and-or-php-class-for-storing-dynamic-two-dimensional-arrays0SQL design and / or PHP class for storing dynamic two-dimensional arrays?AlexanderJohannesenhttp://stackoverflow.com/users/459442009-04-29T08:46:32Z2009-04-29T09:26:17Z
<p>I need an elegant way to store dynamic arrays (basically spreadsheets without all the functionality) of various sizes (both x and y), mostly being used as ENUMs, lists, lookup data, price sheets, that sort of thing. Multi-lingual would be a great bonus. Speed of the essence. </p>
<p>Here's an example of a typical "sheet" ;</p>
<pre><code> | 1 | 2 | 3 | 4
-------------------------------
model A | 2$ | 5$ | 8$ | 10$
model B | 3$ | 6$ | 9$ | 12$
model C | 4$ | 8$ | 10$ | 13$
</code></pre>
<p>So, to get info, I would do ;</p>
<pre><code> $price = this_thing_im_after ( '3', 'model B' ) ;
echo $price ; // Prints '9$'
</code></pre>
<p>I'm in the PHP5 and Zend Framework world, but thoughts on design and SQL is just as dandy, even suggestions on and from the outside world, libs, extensions, etc. as I don't want to reinvent too much of the wheel. I need the backend stuff the most, and I'll write a GUI for dynamic sheets later. Thoughts, ideas, pointers?</p>
<p>Just an edit to point out that I'd prefer not to serialize and blob the data as I would like to query the indeces and sheets, perhaps even the data (or type for those who support such, now <em>that</em> would be awsome!) if I'm in a crazy mood. But again, this is not a breaker for me; if someone has a nice library or class for serializing in and out quickly out of a database with some simple querying, I'm all happy.</p>
http://stackoverflow.com/questions/798256/what-on-earth-could-cause-this-php-error-bug-in-php/798289#7982891Answer by AlexanderJohannesen for What on earth could cause this PHP error? Bug in PHP?AlexanderJohannesenhttp://stackoverflow.com/users/459442009-04-28T14:32:52Z2009-04-28T14:32:52Z<p>Sounds like you've got the common.php file included more than once. Do you use include(), require() or require_once() for your includes?</p>
http://stackoverflow.com/questions/790608/apache-rewrite-rules-redux0Apache rewrite rules reduxAlexanderJohannesenhttp://stackoverflow.com/users/459442009-04-26T10:35:00Z2009-04-28T14:21:07Z
<p>I've got a REST framework that when plopped into any directory should Just Work(TM), and it seems to work fine when I've got projects in subdirectories, but not if it's in root. So, given a few example directories;</p>
<pre><code>/
/project1
/bingo/project2
/hoopla/doopla/minor/project3
</code></pre>
<p>All of these works fine, except I'm getting "funnies"* when the project runs in the root directory (bit hard to explain, I suppose, but the second level rewrites are not working properly). Here's my attempt at a generic .htaccess file:</p>
<pre><code>RewriteEngine On
RewriteRule ^static/ - [L]
RewriteCond %{REQUEST_URI} ^$
RewriteRule .* ./ [R,L]
RewriteRule ^index.php - [L]
RewriteRule (.*) index.php?q=$1 [QSA,PT]
</code></pre>
<p>(And yes, all projects have a subdirectory ./static which is ignored by rewrites) What I'm trying to achieve is a set of rewrite rules that work for most cases (which is, again, plonking the project in a directory the webserver serves). I'm not a rewrite rules wiz by a long shot, and any good advice and gotchas would be appreciated (and yes, I've gone through too many introductory articles. I need some serious juice.)</p>
<ul>
<li><p>More info on the funnies; my webserver has docroot in one spot (under /usr/share/apache2/default-site/), but a set of rules that says that /projects is pulled in from somewhere else that's not a subdirectory of docroot (/home/user/Projects/). When I go there, I get a list of /projects subdirectories, and if one of those subdirectories gets called (restmapp) with the proposed rewrite rules, I get ;</p>
<p>The requested URL /home/user/Projects/restmapp/index.php was not found on this server.</p></li>
</ul>
http://stackoverflow.com/questions/797834/should-a-restful-put-operation-return-something/797878#7978780Answer by AlexanderJohannesen for Should a RESTful 'PUT' operation return something....AlexanderJohannesenhttp://stackoverflow.com/users/459442009-04-28T13:15:09Z2009-04-28T13:15:09Z<p>There's a difference between the header and body of a HTTP response. PUT should never return a body, but must return a response code in the header. Just choose 200 if it was successful, and 4xx if not. There is no such thing as a null return code. Why do you want to do this?</p>
http://stackoverflow.com/questions/797491/web-service-vs-form-posting/797547#7975471Answer by AlexanderJohannesen for Web Service vs Form postingAlexanderJohannesenhttp://stackoverflow.com/users/459442009-04-28T12:07:20Z2009-04-28T13:07:07Z<p>Webservices are <a href="http://en.wikipedia.org/wiki/SOAP" rel="nofollow">SOAP messages</a> (the SOAP protocol uses XML to pass messages back and forth), so your server on both ends must understand SOAP and whatever extensions you want to talk about between them, and they probably (but don't have to) be able to grok WMDL files (that "explains" the various services endpoints and remote functionality available). Usually we call this the SOAP / WS-* stack, with emphasis on 'stack' as there's a few bits of software that needs to be available, and the more complex the SOAP calls, the more of this stack needs to be available and maintained.</p>
<p>Using POST, on the other hand, is mostly associated with <a href="http://en.wikipedia.org/wiki/Representational%5FState%5FTransfer" rel="nofollow">RESTful behaviours</a>, and as an example of a protocol of such, look to HTTP. Inside the POST you can of course post complex XML, but people tend to use plain POST to simplify the calling, and use <a href="http://en.wikipedia.org/wiki/Http" rel="nofollow">HTTP responses</a> as replies. You don't need any extra software, probably, as most if not all webkits has got HTTP support. My own bias leans towards REST, in case you wonder. Through using HATEOAS you can create really good infrastructure for self-aware systems that can modify themselves with load and availability in real-time as opposed to the SOAP way, and this lies at the centre of the argument <em>for</em> it; HTTP was designed for large distributed networks in mind, dealing with performance and stability. SOAP tends to be a one-stop if-it-breaks-you're-stuffed kinda thing. (Again, remeber my bias. I've written about this a lot on my blog, especially <a href="http://shelter.nu/blog/2007/01/soa-roa-woa-rest-soap-point-about-what.html" rel="nofollow">the architecture side</a> and the <a href="http://shelter.nu/blog/2006/05/knee-deep-in-soa.html" rel="nofollow">impact of SOA vs. ROA</a>. :)</p>
<p>There's a great debate as to which is "better", to which I can only say "it depends completely on what you want to do, how you prefer to do it, what you need it to do, your environment, your experience, the position of the sun and the moon(s), and the mood my cat is in." Eh, meaning, a lot.</p>
<p>I'm all for a healthy debate about this, but I tend to think that SOAP is a reinvention; SOAP is an envelope with a header and body, and if that sounds familiar, it is exactly how HTML was designed, a fact very few people tend to see. HTTP as just a protocol for shifting stuff around is well understood and extremely well supported, and SOAP uses it to shift their XML envelopes around. Is there a real difference between shifting SOAP and HTML around? Well, yes, the big difference is that SOAP reinvents all the niceties of HTTP (caching, addressability, state, scaling), and then use HTTP only for delivering the message and nothing else and let the stack itself have to deal with those niceities mentioned earlier. So, a lot of the goodness of HTTP is ignored and recreated in another layer (hence, you need a SOAP stack to deal with it), which to me seems wasteful, ignorant and adding complexity.</p>
<p>Next up is what you want to do. For really complex things, there's lots in the webservices stack of standards (I think it's about 1200 pages combined these days) that could help you out, but if your needs are more modest (ie. not <em>that</em> crazy about seriously complex security, for example) a simple POST (or GET) of a request and an envelope back with results might be good enough. Results in HTTP is, as you probably know, HTTP content-type, so lots is already supported but you can create your own, for example application/xml+myformat (or more correctly, application/x-xml+myformat if I remember correctly). Get the request, if it's a response code 200, and parse.</p>
<p>Both will work. One is heavy (WS-* stack) depending on what your needs are, the other is more lightweight and already supported. The rest is glue, as they say.</p>
http://stackoverflow.com/questions/796515/how-to-get-current-country-code-locale-in-xsl/797294#7972942Answer by AlexanderJohannesen for How to get current country-code/locale in XSL?AlexanderJohannesenhttp://stackoverflow.com/users/459442009-04-28T10:50:02Z2009-04-28T11:02:32Z<p>Locals aren't natively supported in XSLT 1.0, but there are ways to work with them, but you need to pass it in as a parameter to your XSLT processor or rely on extensions. <em>Some</em> processors will grant you access to the locale information, but there is no standard way of doing it, and we must know your environment to see if it is possible. However, in XSLT 2.0 some of the date, time and number formatting functions will have (sometimes limited) support for locales, and will be handled by the processor, not by you (which is why there's these functions :)</p>
<p>As to using some form of locality in a XSLT 1.0 environment and partially as a Good Thing (TM) regardless of XSLT version, I'd set up a few basic templates for the type of data you're working with, and pass the local parameter in (as explained before). For numbers, look for the <a href="http://www.w3schools.com/XSL/func%5Fformatnumber.asp" rel="nofollow">xsl:format-number</a>, for example.</p>
<p>As to other local things, I'd create another XML file, and let the parameter work as a picker for the info you're after. The XML might look like;</p>
<pre><code><locals>
<config id="de">
<currency notation="&#8352;" format-number="###.###,##" />
<text id="welcome">Wilcommen!</text>
</config>
<config id="en">
<currency notation="&#163;" format-number="### ###.##" />
<text id="welcome">Welcome!</text>
</config>
<config id="no">
<currency notation="NOK" format-number="###.###,##" />
<text id="welcome">Velkommen!</text>
</config>
</locals>
</code></pre>
<p>From this, open it as ;</p>
<pre><code><xsl:variable name="locale" select="document('locale.xml')/locals/config[@id=$parameter.for.locale]" />
</code></pre>
<p>And you can use it as such for the welcome text;</p>
<pre><code><xsl:value-of select="$locale/text[@id='welcome']" />
</code></pre>
<p>For number formatting and such it's a bit more complex, but verify this is the right path first and I'll expand, but basically you should make a few keys over the locale XML file, and use a key lookup for values. For numbers and such (need to tell me more about what you want to support) I'd write a couple of templates that deal with that, and use ;</p>
<pre><code><xsl:call-template name="my-template">
<xsl:with-param name="this" select="'some_number'" />
</xsl:call-template>
</code></pre>
http://stackoverflow.com/questions/797172/custom-404-error-without-server/797219#7972191Answer by AlexanderJohannesen for Custom 404 error without serverAlexanderJohannesenhttp://stackoverflow.com/users/459442009-04-28T10:20:07Z2009-04-28T10:20:07Z<p>404 is a HTTP response code, and as such only delivered through the HTTP protocol by servers that speak it. The file:// extension isn't a real protocol response as such, it's a hack built into clients (like browsers) that enable local file support, however it's up to browsers / clients themselves whether they expose any response codes from their file:// implementation. In theory they could report them in the DOM, for example, but they would be response codes exposed to themselves, and as such rarely implemented. Most don't, and there isn't a standard way for it. You may look into browser extensions, like Firefox, and see if they support it, but then, this is highly unstandard and will likely break if you pop it on the web.</p>
http://stackoverflow.com/questions/790521/a-need-to-get-data-from-a-table-and-then-use-that-data-for-a-query/790556#7905561Answer by AlexanderJohannesen for A need to get data from a table and then use that data for a queryAlexanderJohannesenhttp://stackoverflow.com/users/459442009-04-26T09:33:55Z2009-04-26T09:33:55Z<p>So, you want to pass parameters between "pages" which all are the same PHP page?</p>
<p>Well, the global $_REQUEST array is your friend, unless I'm not understanding your problem (which isn't shaped as a question, BTW). Your URL would be example.php?lat=xxx&long=yyy, and you pull out those in your script with $_REQUEST['lat'] and $_REQUEST['long'], and if you want a "pager" as well, you can do the same as in $_REQUEST['page'].</p>
<p>But I'm having a hard time understanding what you actually struggle with, so if you could add or edit info, hopefully with some code, that's be great.</p>
http://stackoverflow.com/questions/790160/terminology-parts-of-a-composite-relationship/790220#7902200Answer by AlexanderJohannesen for Terminology - parts of a composite relationshipAlexanderJohannesenhttp://stackoverflow.com/users/459442009-04-26T04:05:02Z2009-04-26T04:05:02Z<p>You want the "has a" relationship; our thing "has a"nother thing attached, as opposed to inheritance of "is a" relationship. You can build fairly robust models around just those two relationships. But.</p>
<p>To postulate further, in Topic Maps (since we're talking about meta models) we have a few in-built relationships which also has global identifiers (which you could use for global knowledge / data exchange), which are the supertype-subtype (denotes hiearchies) and the type-instance (denotes typification, a strongly typed "is a") relationships. These are fairly global (meaning, also outside the Topic Maps world). Have a look at the end of the <a href="http://www.isotopicmaps.org/sam/sam-model/" rel="nofollow">Topic Maps Data Model</a> for more on this.</p>
http://stackoverflow.com/questions/789987/i-dont-want-to-learn-php-should-i-avoid-learning-it/790013#79001311Answer by AlexanderJohannesen for I don't want to learn PHP. Should I avoid learning it?AlexanderJohannesenhttp://stackoverflow.com/users/459442009-04-26T00:35:18Z2009-04-26T00:35:18Z<p>Don't judge PHP by the code and design qualities of WordPress. Most people see old PHP 3 and 4 code, and (rightly) go "yuck". The world has moved since then, so if you want better code, look at the source code for something like the Zend Framework instead.</p>
<p>All you've got now is that the code of <em>WordPress</em> sucks, nothing more. PHP can be beautiful as a summers day with clear blue skies, eating pies, no lies, I tell no lies.</p>
<p>You can of course skip PHP, just like you can skip Java, C#, Ruby, Python, LISP or any other that doesn't suit you, unless of course you want to be more than just a Ruby fanboy and live in a bubble for the rest of your life. :)</p>
http://stackoverflow.com/questions/785268/how-to-go-about-speed-testing-my-php-script/785330#7853301Answer by AlexanderJohannesen for How to go about speed testing my PHP script?AlexanderJohannesenhttp://stackoverflow.com/users/459442009-04-24T10:33:04Z2009-04-24T11:46:18Z<p>The best thing I know about, and use all the time, is to use a profiler. My profiler of choice is <a href="http://www.xdebug.org/docs/profiler" rel="nofollow">Xdebug</a> which has a built-in profiler, and getting it installed in your PHP setup is fairly easy. Once up and running, it can give you all sorts of debugging and profiling information, and the output format of Xdebug can be read by the amazing <a href="http://kcachegrind.sourceforge.net/html/Home.html" rel="nofollow">kCacheGrind tool</a> (<em>visualizing and reporting on the stack and graphing your application flow</em>) if you're a happy Linux camper. What would I do without these tools!?</p>
<p>Also, there's a few pitfalls in terms of speed when it comes to the Zend Framework, mostly associated with not using the Zend_Cache class enough, or convoluted class hiearchies where you possibly should use the Zend_Registry class.</p>
<p>Happy profiling.</p>
http://stackoverflow.com/questions/785371/which-php-web-framework-for-firebird/785391#7853911Answer by AlexanderJohannesen for Which PHP Web framework for Firebird?AlexanderJohannesenhttp://stackoverflow.com/users/459442009-04-24T10:58:54Z2009-04-24T10:58:54Z<p>The Zend Framework has a <a href="http://framework.zend.com/wiki/display/ZFPROP/Zend%5FDb%2BFirebird-Interbase%2Bsupport" rel="nofollow">Firebird / Interbase DB adapter in incubation</a>, so almost clean out of the box (and I've used it, and it worked like a charm for me). Mind you, there's an <a href="http://au2.php.net/manual/en/ref.pdo-firebird.php" rel="nofollow">experimental PDO adapter for Firebird</a> as well, and with that in place, any framework that use PDO is going to support it.</p>
http://stackoverflow.com/questions/784584/convincing-others-of-ruby-over-python-and-php/784621#78462112Answer by AlexanderJohannesen for Convincing others of Ruby over Python and PHPAlexanderJohannesenhttp://stackoverflow.com/users/459442009-04-24T05:22:12Z2009-04-24T05:22:12Z<p>Hmm, as an active programmer in all three languages I simply can't agree with the sentiment that either is better than the other. Sure, Python and Ruby are more object-oriented, but that's not a requirement to be better, it's only a convenience. You can't beat the community of PHP and the legacy (for good and for bad) of code, nor ignore the direction PHP is taking for the future, the mass of support, the distributed servers ready for it, and so on.</p>
<p>If you want to focus on syntax, then all three have their strong and weak points. If you want to talk about back-end technology, then as all three are moving active open-source projects, there really is no winner.</p>
<p>Except, you, the programmer, who can mix and choose what best suits you. Remember that even if <em>you</em> think Ruby is the best thing since NAND gates it doesn't mean others follow. And remember also that we're all different; some people actually <em>like</em> Java and .Net, just like others love LISP. We're all different, and I doubt any of the Ruby/Python/PHP contenders are any better than the other. Sorry.</p>
http://stackoverflow.com/questions/784384/why-do-css-styles-only-take-affect-when-placed-in-a-style-tag-in-my-form-and-not/784488#7844881Answer by AlexanderJohannesen for Why do CSS styles only take affect when placed in a style tag in my form and not in the associated CSS file?AlexanderJohannesenhttp://stackoverflow.com/users/459442009-04-24T04:11:01Z2009-04-24T04:11:01Z<p>Actually, CSS follows a cascading (duh) model of inheritance, from top to bottom in the DOM, making their entrance into the DOM significant. Depending on where in your CSS file you put them, there might be rules that follow that invalidates them. Putting them in your code directly (I assume near the place of use) will ensure the CSS is parsed as last and most significant. I guess some details on the size of your CSS (external) file and the complexity within would be info in this case. I'd also pop that CSS file through a validator, just to make sure you haven't got any gotchas in there (like * rules, which needs to be handled gently).</p>
http://stackoverflow.com/questions/781677/php-get-the-last-insert-id-from-odbc-connection/781750#7817502Answer by AlexanderJohannesen for PHP Get the last insert id from ODBC connection.AlexanderJohannesenhttp://stackoverflow.com/users/459442009-04-23T13:37:20Z2009-04-24T03:34:16Z<p>If you're using databases with PHP I strongly recommend using PDO (simple database wrapper for a lot of common database engines, more and more supported all the time, part of PHP canon), and hence use <a href="http://php.oregonstate.edu/manual/en/pdo.lastinsertid.php" rel="nofollow">PDO::lastInsertId</a> if your database supports the equivalent of mysql_insert_id. </p>
<p>Don't use "SELECT max(id) FROM table;" as it can result in seriously freaky and hard-to-find bugs later on.</p>
<p><strong>* **UPDATE</strong> : Ok, you're using ODBC, and I suspect you're after <a href="http://au2.php.net/manual/en/function.odbc-cursor.php" rel="nofollow">odbc_cursor</a>. I still stand by the strong recomendation to use PDO, as it has an ODBC driver. (ODBC in my eyes is an grumpy bitter old man who mumbles under his breath driving his truck that's falling apart, as the hip and effective PDO guys race past in their sexy VOLVO S90's)</p>
http://stackoverflow.com/questions/746366/best-method-for-debugging-a-called-webservice-in-php/781681#7816811Answer by AlexanderJohannesen for Best method for debugging a called webservice in php?AlexanderJohannesenhttp://stackoverflow.com/users/459442009-04-23T13:27:07Z2009-04-23T13:27:07Z<p>Can I assume you're talking about the lack of threads in PHP, so the service stops the flow of your program and halts the debugger? There's ways around it, but they are hard, cumbersome and hackish.</p>
<p>For example, if you use a framework like Zend for the HTTP traffic, you can hack the HTTP class to use primitive sockets for the service reading/writing instead of the built-in stuff, and create a small task switcher (loop :) to track what's going on.</p>
<p>You could of course use fopen ( 'http://...' ) and fread in chunks in a loop as well, that could do the trick, but you need http: support in streams turned on.</p>
http://stackoverflow.com/questions/1857893/what-is-the-need-of-assembly-why-we-use-themComment by AlexanderJohannesen on what is the need of assembly ? why we use them?AlexanderJohannesenhttp://stackoverflow.com/users/459442009-12-07T05:17:33Z2009-12-07T05:17:33ZHeh, I came in here thinking 'assembler', hoping I could be valuable to someone who wanted to know more about the dark mystical forces of the Dark Ages of computing in which we peeked and poked miracles out of abandoned chip wood and leftover tape-recorders. It looks like I need to crawl back to my hole now.http://stackoverflow.com/questions/1187537/application-mvc-event-model/1210596#1210596Comment by AlexanderJohannesen on Application / MVC Event ModelAlexanderJohannesenhttp://stackoverflow.com/users/459442009-07-31T04:43:47Z2009-07-31T04:43:47ZI've updated my blog post (link at the top) with some more of what you suggest. What a pain this is turning out to be. :) I'm happy with something more meta and fill that out, though, but one would think there's been tons of work done in this area.
As to my own framework, well, I'm creating a Topic Maps based framework where this event model definition will be part of an open ontology that's shareable for all, provided others are willing to take a few extra steps and do the ontology-thang with their own frameworks. Hmm. I doubt it. THanks for the answer.http://stackoverflow.com/questions/1187537/application-mvc-event-model/1206471#1206471Comment by AlexanderJohannesen on Application / MVC Event ModelAlexanderJohannesenhttp://stackoverflow.com/users/459442009-07-30T13:41:35Z2009-07-30T13:41:35ZThanks for the answer, but I don't want to be tied to any one technology, company or line of thinking. I'm after the events (names, values, triggers, actions, etc.) but that's not tied down. I've edited my question to reflect this, with a pointer to my blog post.http://stackoverflow.com/questions/1187343/modrewrite-and-php-issuesComment by AlexanderJohannesen on Modrewrite and PHP issuesAlexanderJohannesenhttp://stackoverflow.com/users/459442009-07-27T10:07:10Z2009-07-27T10:07:10ZMaybe throw in a little explanation of what you're trying to do? Maybe a few examples of incoming URIs and outgoing, and what parameters you're hoping to preserve?http://stackoverflow.com/questions/969426/jquery-plugin-or-otherwise-js-or-amazing-alternative-like-flash-for-tree-edi/969924#969924Comment by AlexanderJohannesen on JQuery plugin (or otherwise JS [or amazing alternative, like Flash]) for tree editor?AlexanderJohannesenhttp://stackoverflow.com/users/459442009-06-09T23:44:03Z2009-06-09T23:44:03ZYeah, the jstree plugin is really the closest so far. I find it very odd that there is no such thing as a typed tree editor; surely most applications would benefit from one. Hmm.http://stackoverflow.com/questions/969426/jquery-plugin-or-otherwise-js-or-amazing-alternative-like-flash-for-tree-edi/969783#969783Comment by AlexanderJohannesen on JQuery plugin (or otherwise JS [or amazing alternative, like Flash]) for tree editor?AlexanderJohannesenhttp://stackoverflow.com/users/459442009-06-09T23:41:01Z2009-06-09T23:41:01ZHmm, I'm using the Tree Grid for other things, but it doesn't <b>edit</b> anything; that's an extension I'd have to make myself. It's a good plugin, though, but for other things.http://stackoverflow.com/questions/923588/is-being-restful-that-important/923730#923730Comment by AlexanderJohannesen on Is being RESTful that important?AlexanderJohannesenhttp://stackoverflow.com/users/459442009-05-30T22:31:12Z2009-05-30T22:31:12ZJohn, the two can't really be compared. You can do pretty much everything through SOAP, no doubt, but you have to look at the trade-off it brings, amongst them the requirement to understand 1200 pages of standards materials, the technical stack implementations (there's a reason this is the vehicle in Enterprise Service Buses; it gets big and complex very fast). Now, REST doesn't do as much as it is a mechanism for the stuff you want to do, but it shifts your focus from RPC to distributed resource management through URIs instead, the stuff that built the web, and a Good Thing (TM). :)http://stackoverflow.com/questions/923588/is-being-restful-that-important/923730#923730Comment by AlexanderJohannesen on Is being RESTful that important?AlexanderJohannesenhttp://stackoverflow.com/users/459442009-05-29T14:33:50Z2009-05-29T14:33:50ZBrains? :) Seriously, to do SOAP beyond the envelope you need to grok the WS-* stack for it to make sense, but the WS-* stack reinvent stuff that's already been solved in far more elegant ways, especially in terms of scalability, the state machine, and the ease of use. Need addressing? With WS-* you need the Adressing standard, with REST you just plonk in your URL and get redirected to where you need to go, and change your cache or setting depending on the response codes. It's already been done much better with REST. It's freedom from convention, in some ways.http://stackoverflow.com/questions/814471/php-xpath-get-only-tag-attributes-remove-inner-tag-contentsComment by AlexanderJohannesen on php xpath - get only tag attributes/remove inner tag contentsAlexanderJohannesenhttp://stackoverflow.com/users/459442009-05-03T09:19:41Z2009-05-03T09:19:41ZWell, the reason I asked for what you're trying to accomplish and what PHP versions and environment you've got, is that this is trivial stuff in XSLT, possibly even easy enough in SimpleXML as well, but before I spend lots of time crunching it it would be great with a few directional hints. :)http://stackoverflow.com/questions/814471/php-xpath-get-only-tag-attributes-remove-inner-tag-contentsComment by AlexanderJohannesen on php xpath - get only tag attributes/remove inner tag contentsAlexanderJohannesenhttp://stackoverflow.com/users/459442009-05-02T22:26:42Z2009-05-02T22:26:42ZYou don't want to store it in your database, but you would like the DOM intact? WFT? Maybe you should tell us what you're actually trying to acomplish, as your question as it stands make very little sense? PHP has many ways of using XPath, through the DOM reader, through the SimpleXML object, through XSLT, and depending on PHP version, through various brew styles. Which one(s) are you using?http://stackoverflow.com/questions/801475/sql-design-and-or-php-class-for-storing-dynamic-two-dimensional-arrays/801513#801513Comment by AlexanderJohannesen on SQL design and / or PHP class for storing dynamic two-dimensional arrays?AlexanderJohannesenhttp://stackoverflow.com/users/459442009-05-02T00:17:02Z2009-05-02T00:17:02ZIsn't it obvious? Somewhere in the middle. :) I like to query for keys, for example, or column headers. I'd <i>really</i> like to have typification as well, but hey, I'm dreaming, I know.http://stackoverflow.com/questions/790160/terminology-parts-of-a-composite-relationship/790220#790220Comment by AlexanderJohannesen on Terminology - parts of a composite relationshipAlexanderJohannesenhttp://stackoverflow.com/users/459442009-05-02T00:15:22Z2009-05-02T00:15:22ZSorry, but you're wrong; this is not what composition is about. Maybe you're confused because "has a" and "is a" sounds so much like a real phrase? Unfortunately, that's what they are called, even if it may be too real-life for you. :) Sorry.http://stackoverflow.com/questions/801475/sql-design-and-or-php-class-for-storing-dynamic-two-dimensional-arrays/801513#801513Comment by AlexanderJohannesen on SQL design and / or PHP class for storing dynamic two-dimensional arrays?AlexanderJohannesenhttp://stackoverflow.com/users/459442009-04-29T09:28:40Z2009-04-29T09:28:40ZYeah, I don't want cell level granularity, but I'd love to have key / header / column name granularity. I'd also love to have each sheet to have multiple types, and just ask for all sheets of type 'product-price', for example. Hmm, a dynamic field in a serialize mush would accomplish that, I guess.http://stackoverflow.com/questions/801475/sql-design-and-or-php-class-for-storing-dynamic-two-dimensional-arrays/801513#801513Comment by AlexanderJohannesen on SQL design and / or PHP class for storing dynamic two-dimensional arrays?AlexanderJohannesenhttp://stackoverflow.com/users/459442009-04-29T09:10:07Z2009-04-29T09:10:07ZWell, I was hoping to escape serializing hell, and if I was really, really lucky, have indeces over the data so I can typify the sheet keys. But yes, I could simply serialize them all, and do away with the whole notion of having them in a database for easy storing. :) I have thought about it, though.http://stackoverflow.com/questions/790608/apache-rewrite-rules-reduxComment by AlexanderJohannesen on Apache rewrite rules reduxAlexanderJohannesenhttp://stackoverflow.com/users/459442009-04-28T14:21:37Z2009-04-28T14:21:37ZFunnies added to the description.