User troelskn - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T11:41:50Z http://stackoverflow.com/feeds/user/18180 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1820353/is-there-a-well-established-naming-convention-for-php-namespaces/1821612#1821612 1 Answer by troelskn for Is there a well-established naming convention for PHP namespaces? troelskn 2009-11-30T18:42:38Z 2009-11-30T18:42:38Z <p>I don't think you can say there is anything well established at this point, but there is an RFC discussing it for PEAR2: <a href="http://wiki.php.net/pear/rfc/pear2%5Fnaming%5Fstandards" rel="nofollow">http://wiki.php.net/pear/rfc/pear2%5Fnaming%5Fstandards</a></p> <p>My take is that namespaces are a form of variables, and therefore should follow the same convention as they do. I genereally prefer <code>lowercase_underscore</code> for free variables (As opposed to object members), so the most natural for my taste would be <code>namespace\ClassName</code>. This also matches the most prevalent conventions from other languages. On the other hand, the same argument could be made for pre-5.3 pseudo-namespaces, but here the de-facto standard seems to be using CamelCase.</p> http://stackoverflow.com/questions/1816051/wildcard-replace-in-php/1816307#1816307 6 Answer by troelskn for Wildcard replace in PHP troelskn 2009-11-29T18:29:01Z 2009-11-30T09:39:43Z <p>You say that you are not going to parse xml and then goes on to show an xml example. That's a bit confusing.</p> <p>Now, the reason why you can't use regular expressions to parse xml, is that they aren't contextual. Therefore there are a whole class of problems that regular expressions can't be used for. This includes nested tags (Whether they are xml or not), so keep that in mind.</p> <p>That out of the way, you should be using <code>preg</code> - not <code>ereg</code>. <code>ereg</code> is a lesser used, slower and now deprecated type of regular expressions. Just forget about it.</p> <p>In pcre (Perl Compatible Regular Expressions), which is the language that preg uses, a <code>.</code> (dot) is a wildcard, that matches any single character (Except newline). You can put a quantifier after a match. A quantifier can be an explicit range of numbers, such as <code>{1,3}</code> (meaning at least one, but up to 3) or you can use one of the short hand symbols, such as <code>+</code> (Short for <code>{1,}</code>, meaning at least one) or <code>*</code> (Meaning any number, including zero). With this knowledge, you can match anything with <code>.*</code>.</p> <p>By default, expressions will match the largest possible pattern (Known as being greedy). You can change this with the <code>?</code> modifier. Thus <code>.*?</code> will match anything, but take the shortest possible pattern. This can then be used to match any delimited value like follows:</p> <pre><code>~&lt;foo&gt;.*?&lt;/foo&gt;~ </code></pre> <p>Note that I'm using <code>~</code> as the delimiter here to avoid having to escape <code>/</code> in the expression. The standard is to use <code>/</code> as delimiter, in which case the expression would have looked like this:</p> <pre><code>/&lt;foo&gt;.*?&lt;\/foo&gt;/ </code></pre> <p>In general, the above is bad practise, since it's much better to match a negated character class than a dot, but to keep things simple for you, just ignore this until you get the basics under your skin. It'll work in most cases. In particular, since the <code>.</code> doesn't match newlines, this won't work if the content contains a newline character. If you need this you can do one of two things: Either you add a <a href="http://www.php.net/manual/en/reference.pcre.pattern.modifiers.php" rel="nofollow">modifier</a> to the expression, or, you replace the <code>.</code> with a character class, that includes newlines. For example <code>[\s\S]</code> (Meaning a whitespace character <em>or</em> a non-whitespace character, which is the same as anything). This is how the expression would look then:</p> <pre><code>~&lt;foo&gt;.*?&lt;/foo&gt;~s </code></pre> <p>Or:</p> <pre><code>~&lt;foo&gt;[\s\S]*?&lt;/foo&gt;~ </code></pre> <p>To put all this to work, let's pass it to the <code>preg_replace</code> function:</p> <pre><code>echo preg_replace('~&lt;foo&gt;.*?&lt;/foo&gt;~s', '&lt;foo&gt;Lorem Ipsum&lt;/foo&gt;', $input); </code></pre> <p>If your tag-names are variable, you can build the expression up like you would with an SQL query. Just like SQL, you need to escape certain characters. Use <code>preg_quote</code> for that:</p> <pre><code>function swapText($tagname, $replacement_text, $input) { $tagname_escaped = preg_quote($tagname, '~'); return preg_replace( '~&lt;' . $tagname_escaped . '&gt;.*?&lt;/' . $tagname_escaped . '&gt;~s', '&lt;' . $tagname . '&gt;' . $replacement_text . '&lt;/' . $tagname . '&gt;', $input); } </code></pre> http://stackoverflow.com/questions/1811931/how-to-manage-and-queue-background-jobs/1812233#1812233 2 Answer by troelskn for how to manage and queue background jobs troelskn 2009-11-28T10:54:34Z 2009-11-28T10:54:34Z <p>The basics is to create a queue that you put the job in and then have a worker running as a cronjob or daemon. The worker takes jobs off the queue, processes it and puts the result back with a flag that says "done". The frontend will then periodically poll the queue to see if its job has finished. You can use a database for the queue - pick one that supports locking.</p> http://stackoverflow.com/questions/1809976/how-to-get-the-number-of-results-found-for-a-keyword-in-google/1810023#1810023 1 Answer by troelskn for How to get the number of results found for a keyword in google troelskn 2009-11-27T18:07:26Z 2009-11-27T18:07:26Z <p>You can screen scrape it. Something like:</p> <pre><code>$keywords = "blue metal kettle"; $html = file_get_contents("http://www.google.com/?q=" . rawurlencode($keywords)); preg_match('/Results 1 - \d+ of about ([0-9,]+) for/', $html, $reg); var_dump($reg[1]); </code></pre> <p>If you use this in an application, you would probably be violating Google's terms of use.</p> http://stackoverflow.com/questions/1809567/php-simpletest-handling-exceptions/1809847#1809847 0 Answer by troelskn for PHP SimpleTest - Handling Exceptions troelskn 2009-11-27T17:22:23Z 2009-11-27T17:22:23Z <pre><code>function testSaveMethodThrows() { $foo = new Foo(); try { $foo-&gt;save(); $this-&gt;fail("Expected exception"); } catch (EntityException $e) { $this-&gt;pass("Caught exception"); } } </code></pre> <p>Or use <a href="http://www.simpletest.org/api/SimpleTest/UnitTester/UnitTestCase.html#expectException" rel="nofollow"><code>expectException</code></a>:</p> http://stackoverflow.com/questions/1804423/whats-the-difference-between-var-x-and-var-x-in-jquery/1804458#1804458 1 Answer by troelskn for What's the difference between ‘var $x’ and ‘var x’ in jQuery? troelskn 2009-11-26T15:51:03Z 2009-11-26T15:51:03Z <p>The dollar prefix is often used in Javascript for global variables. It's merely a convention - Like underscore is often used to denote a private member.</p> http://stackoverflow.com/questions/1697764/calling-mysqlrealescapestring-using-the-plt-scheme-foreign-function-interface/1802479#1802479 0 Answer by troelskn for Calling mysql_real_escape_string using the PLT-Scheme Foreign Function Interface troelskn 2009-11-26T09:10:48Z 2009-11-26T09:10:48Z <p>You may find one of these helpful:</p> <ul> <li><a href="http://knauth.org/plt/mysql/mysqlclient/" rel="nofollow">http://knauth.org/plt/mysql/mysqlclient/</a></li> <li><a href="http://github.com/troelskn/mr-mysql" rel="nofollow">http://github.com/troelskn/mr-mysql</a></li> </ul> http://stackoverflow.com/questions/1791843/php-session-slowdown/1792064#1792064 4 Answer by troelskn for PHP session slowdown troelskn 2009-11-24T18:42:48Z 2009-11-24T18:42:48Z <p>You should meassure your sites performance with Xdebug or similar, to verify that the slowdown is indeed in session handling.</p> http://stackoverflow.com/questions/1791082/utf-8-php-and-xml-mysql/1791766#1791766 0 Answer by troelskn for UTF-8, PHP and XML Mysql troelskn 2009-11-24T17:50:22Z 2009-11-24T17:50:22Z <p><code>latin1_swedish_ci</code> is a collation, not a charset. Since collations are supposed to match their charset, it suggests that the table is using latin1, but it's not a guarantee.</p> <p>Strictly speaking, the charset of tables is irrelevant here, since MySql can convert input/output. That's what the connection charset (<code>mysql_set_charset</code>) is for. However, for that to work properly, the data needs to be encoded properly in the database. I would begin by checking that strings are correct in the database. Simplest thing is to log in on the command line and select a row which has non-ascii characters in it. Does it look OK?</p> <pre><code>$mystring = "Otivägen" // this is actually obtained from database; </code></pre> <p>Watch out. The encoding of the data in <code>$mystring</code> will now depend on the encoding of the php file. That may or may not be the same as the data in the database.</p> http://stackoverflow.com/questions/1786436/php-pdo-prepared-statement-mysql-like-query/1786656#1786656 0 Answer by troelskn for PHP PDO prepared statement -- mysql LIKE query troelskn 2009-11-23T22:58:14Z 2009-11-23T23:03:23Z <pre><code>$ret = $prep-&gt;execute(array(':searchTerm' =&gt; '"%'.$searchTerm.'%"')); </code></pre> <p>This is wrong. You don't need the double quotes.</p> <pre><code>WHERE hs.hs_text LIKE ":searchTerm" $ret = $prep-&gt;execute(array(':searchTerm' =&gt; '%'.$searchTerm.'%')); </code></pre> <p>This is also wrong. Try with:</p> <pre><code>$prep = $dbh-&gt;prepare($sql); $ret = $prep-&gt;execute(array(':searchTerm' =&gt; '%'.$searchTerm.'%')); </code></pre> <p>Explanation: Prepared statements don't simply do a string-replace. They transport the data completely separate from the query. Quotes are only needed when embedding values into a query.</p> http://stackoverflow.com/questions/1785726/security-in-php/1785966#1785966 0 Answer by troelskn for Security in PHP troelskn 2009-11-23T21:06:51Z 2009-11-23T21:06:51Z <p>Depends on the level of security you require. Basic Http Auth is simple to set up. See <a href="http://php.net/manual/en/features.http-auth.php" rel="nofollow">the manual</a>.</p> http://stackoverflow.com/questions/1783862/replace-all-characters-which-are-not-inside-code-tags/1783878#1783878 3 Answer by troelskn for Replace all "\" characters which are *not* inside "<code>" tags troelskn 2009-11-23T15:31:56Z 2009-11-23T15:31:56Z <blockquote> <p>I reckon I could solve this using negative LookBehinds and/or LookAheads.</p> </blockquote> <p>You reckon wrong. <a href="http://stackoverflow.com/questions/1732348/regex-match-open-tags-except-xhtml-self-contained-tags/1732454#1732454">Regular expressions are not a replacement for a parser</a>.</p> <p>I would suggest that you pipe the html through htmltidy, then read it with a dom-parser and then transform the dom to your target output format. Is there anything preventing your from taking this route?</p> http://stackoverflow.com/questions/1772640/parsing-this-xml-feed-using-php/1772723#1772723 1 Answer by troelskn for Parsing this XML feed using PHP troelskn 2009-11-20T19:25:19Z 2009-11-20T19:25:19Z <pre><code>$doc = new DomDocument(); $doc-&gt;load('http://www.supashare.net/test.xml'); $q = new DomXPath($doc); echo $q-&gt;query('//REDIRECT')-&gt;item(0)-&gt;nodeValue; </code></pre> http://stackoverflow.com/questions/1769746/php-complete-object-graph-not-stored-in-session/1770184#1770184 1 Answer by troelskn for PHP Complete Object Graph not stored in Session troelskn 2009-11-20T12:32:19Z 2009-11-20T12:32:19Z <p>Complex object graphs are serialized fine. Even cyclic references can be serialized. You can't serialize resources though, and certain built-in object types. Generally speaking, serialization is a very expensive operation. You should not rely on it as a shared memory strategy.</p> http://stackoverflow.com/questions/1757345/php-utf8-problem-with-german-characters/1757623#1757623 0 Answer by troelskn for PHP - UTF8 problem with German characters. troelskn 2009-11-18T17:18:36Z 2009-11-18T17:18:36Z <blockquote> <p>The page encoding is UTF8, and I've added:</p> </blockquote> <p>Probably not. Make sure that the php file is actually saved with utf-8 encoding.</p> http://stackoverflow.com/questions/1754793/prevent-file-differences-between-live-and-staging-websites-and-system-scripts-ph/1754887#1754887 1 Answer by troelskn for Prevent file differences between live and staging websites AND system scripts (PHP) troelskn 2009-11-18T10:04:00Z 2009-11-18T13:20:33Z <p>You can do as Jurassic suggested, or you can set an environment variable and read it in through <code>$_ENV</code>.</p> http://stackoverflow.com/questions/1745199/php-http-handling/1745560#1745560 0 Answer by troelskn for PHP http handling troelskn 2009-11-16T23:28:48Z 2009-11-16T23:28:48Z <p>No, but you can send a <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html" rel="nofollow">http 204 (No Content)</a>.</p> http://stackoverflow.com/questions/1744473/using-utf-8-charset-with-php-are-mb-functions-required/1744715#1744715 1 Answer by troelskn for Using UTF-8 charset with PHP - are mb functions required? troelskn 2009-11-16T20:39:22Z 2009-11-16T20:39:22Z <p>There are a number of functions that expect strings to be single byte (And some even presume that it is iso-8859-1). In these cases, you need to be aware of what you're doing and possibly use replacement functions. There is a fairly comprehensive list at: <a href="http://www.phpwact.org/php/i18n/utf-8" rel="nofollow">http://www.phpwact.org/php/i18n/utf-8</a></p> http://stackoverflow.com/questions/1743623/how-to-decode-unicode-characters-in-php/1743899#1743899 1 Answer by troelskn for how to decode unicode characters in php troelskn 2009-11-16T18:13:58Z 2009-11-16T18:13:58Z <p>Those are not "unicode characters" - Those are artefacts of messed-up character encoding. In this case, the most likely explanation is that you are interpreting <code>utf-8</code> data as <code>windows-1252</code>. This may happen if you take a <code>utf-8</code> encoded string and display it in a shell on windows. Or if you display it on a web page, sending a <code>Content-Type</code> header with <code>charset=windows-1252</code>. Just educated guesses of course, there are numerous ways this could happen.</p> <p>The solution to your problem is to treat the data as <code>utf-8</code>.</p> http://stackoverflow.com/questions/1743509/web-based-project-management-and-time-keeping-software/1743842#1743842 3 Answer by troelskn for web-based project management and time keeping software? troelskn 2009-11-16T18:03:59Z 2009-11-16T18:03:59Z <blockquote> <p>.. or hooks into source control, but we still don't run any in our office ..</p> </blockquote> <p>Argh!</p> <p>Regarding your question: Keep in mind that there are a lot of tasks that overlap: Project management, issue tracking, time logging, customer relationship management etc. There are tools that solve all of these problems at once and there are tools that focus on some task. You need to cover all the relevant bases (Which is individual to your business), but you don't want tools to do to much or to get in conflict with each other.</p> <p>Also keep in mind that process is more important than tools. Don't try to fix a broken process by throwing tools at it - Identify your needs first. I would recommend starting with a mostly manual approach (Sounds like this is where you are at currently) and then carefully look for tools (or build them your self) that supports your process. Don't get tempted by the shiny stuff.</p> http://stackoverflow.com/questions/1734074/nusoap-or-zend-soap/1736164#1736164 0 Answer by troelskn for nuSoap or Zend Soap? troelskn 2009-11-15T00:42:41Z 2009-11-15T00:42:41Z <p><a href="http://www.php.net/manual/en/class.soapclient.php" rel="nofollow">http://www.php.net/manual/en/class.soapclient.php</a></p> http://stackoverflow.com/questions/1735492/is-there-garbage-collection-in-php/1735883#1735883 0 Answer by troelskn for Is there garbage collection in PHP? troelskn 2009-11-14T22:49:08Z 2009-11-14T22:49:08Z <p>PHP has a combination of garbage collection and reference counting. The latter is the main mode of managing memory, with the garbage collector picking up the pieces that the ref counter misses (circular references). Before 5.3, php only had ref-counting, and even in 5.3 it's the still how memory will usually be freed.</p> http://stackoverflow.com/questions/1722373/how-can-you-be-a-quality-programmer-in-a-programming-team/1723314#1723314 3 Answer by troelskn for How can you be a quality programmer in a programming team? troelskn 2009-11-12T16:02:19Z 2009-11-12T16:02:19Z <p>Take responsibility for the big picture. Eg. don't focus on writing code - Focus on solving a need/problem, where code is a means to achieve that goal. Don't stop till the <em>problem</em> is solved, regardless of if you've done your part.</p> http://stackoverflow.com/questions/1722909/function-escaping-quote-is-not-working-correctly-solved/1723196#1723196 1 Answer by troelskn for Function escaping quote is not working correctly [Solved] troelskn 2009-11-12T15:47:30Z 2009-11-12T15:47:30Z <p>Your function makes little sense. If magic quotes is on (eg. input is escaped), you unescape it. If it's not on, you escape it. So you'll get different results, depending on if you have magic quote on or not.</p> <p>In any case, relying on magic quotes is a really bad practice. You should:</p> <ol> <li><a href="http://www.php.net/manual/en/security.magicquotes.disabling.php" rel="nofollow">Disable magic quotes or reverse its effect globally</a>.</li> <li><em>Either</em> <a href="http://www.php.net/manual/en/function.mysql-real-escape-string.php" rel="nofollow">escape strings</a> when you construct SQL queries <em>or</em> (better) <a href="http://www.php.net/manual/en/class.pdostatement.php" rel="nofollow">use prepared statements</a>.</li> <li><em>Not</em> unescape/strip/whatever anything when you get it back from the database.</li> </ol> http://stackoverflow.com/questions/1716655/git-and-php-deployment-tools/1717353#1717353 0 Answer by troelskn for Git and PHP Deployment Tools? troelskn 2009-11-11T19:01:07Z 2009-11-11T19:01:07Z <p>The low-tech version is to just write a few shell scripts (You can write them en php). This can work just fine, and has the benefit that you understand exactly what it's doing and can tweak it.</p> <p>If you rather want something more grandiose, you can take a look at Phing. Otherwise, as already mentioned, Capistrano is used by some people, even if it's written in Ruby.</p> http://stackoverflow.com/questions/1715496/how-to-tell-clicking-back-to-load-cache/1715648#1715648 1 Answer by troelskn for how to tell clicking "back" to load cache? troelskn 2009-11-11T14:47:26Z 2009-11-11T14:47:26Z <p>You can conrol this behaviour with the <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.9" rel="nofollow">Cache-Control header</a>. This tutorial seems to be fairly comprehensive: <a href="http://www.mnot.net/cache%5Fdocs/" rel="nofollow">Caching Tutorial</a></p> http://stackoverflow.com/questions/1714023/php-framework-support-for-legacy-php4/1714310#1714310 1 Answer by troelskn for PHP Framework support for legacy PHP4? troelskn 2009-11-11T10:26:37Z 2009-11-11T10:35:53Z <p>Most of PEAR is still targeting php4, so you can use that as a "framework". I believe drupal and codeignitor are also still targeting php4 (Perhaps cakephp also?).</p> <p>The biggest problem with objects and php4 is that objects are passed by-value, so you need to use references to get the usual semantics that most other languages have for objects (including php5). You have to be very careful to always assign a reference to objects. Otherwise it'll be implicitly cloned. This is tedious and very hard to debug if you mess up. Besides, it will make your code incompatible with php5. Eg.:</p> <p>Creating an object:</p> <pre><code>$foo =&amp; new Foo(); </code></pre> <p>Passing an object as argument to a function:</p> <pre><code>class Bar { function cuux(&amp;$foo) { } } $bar =&amp; new Bar(); $bar-&gt;cuux($foo); </code></pre> <p>Since arguments are references, you can't pass a constant. So if you must pass NULL instead of an object, you have to assign NULL to a local variable first. Eg.:</p> <pre><code>$bar =&amp; new Bar(); $foo = null; $bar-&gt;cuux($foo); </code></pre> <p>Returning objects from a function:</p> <pre><code>class Bar { function &amp;doink() { $foo =&amp; new Foo(); return $foo; } } $bar =&amp; new Bar(); $foo =&amp; $bar-&gt;doink(); </code></pre> <p>Note that you MUST assign $foo to a variable, which makes it impossible to return the result of another function directly. Eg. this is illegal:</p> <pre><code>class Bar { function &amp;doink() { return $this-&gt;foo-&gt;doink(); } } </code></pre> <p>It should be:</p> <pre><code>class Bar { function &amp;doink() { $tmp =&amp; $this-&gt;foo-&gt;doink(); return $tmp; } } </code></pre> <p>Miss just one of those ampersands and you're toast. Also, make sure you have a very good understanding of how references behave - They are not exactly intuitive.</p> http://stackoverflow.com/questions/1706018/php-combining-json-with-jsondecode/1706404#1706404 1 Answer by troelskn for php - combining json with json_decode troelskn 2009-11-10T08:33:30Z 2009-11-10T08:33:30Z <pre><code>{ "lists" : { ... } , "lists" : { ... } } </code></pre> <p>That's not valid/meaningful JSON. You have a hash with the same key (<em>lists</em>) in it twice. How would you address that?</p> http://stackoverflow.com/questions/1695973/php5-security-get-post-parameters/1696127#1696127 3 Answer by troelskn for php5 security - get/post parameters troelskn 2009-11-08T11:44:12Z 2009-11-08T11:44:12Z <p>GET and POST variables are no more dangerous than any other variables. You should handle injection vulnerabilities at the usage point, not at the input point. See my answer here:</p> <p><a href="http://stackoverflow.com/questions/129677/whats-the-best-method-for-sanitizing-user-input-with-php/130323#130323">What’s the best method for sanitizing user input with PHP?</a></p> http://stackoverflow.com/questions/1055671/how-can-i-get-the-behavior-of-gnus-readlink-f-on-a-mac 3 How can I get the behavior of GNU's readlink -f on a Mac? troelskn 2009-06-28T20:26:33Z 2009-11-05T06:05:40Z <p>On Linux, the <code>readlink</code> utility accepts an option <code>-f</code> that follows additional links. This doesn't seem to work on Mac and possibly BSD based systems. What would the equivalent be?</p> <p>Here's some debug information:</p> <pre><code>$ which readlink; readlink -f /usr/bin/readlink readlink: illegal option -f usage: readlink [-n] [file ...] </code></pre> http://stackoverflow.com/questions/1823067/project-conversion-from-iso-8859-1-to-utf-8 Comment by troelskn on Project conversion from ISO 8859-1 to UTF-8 troelskn 2009-12-01T00:01:34Z 2009-12-01T00:01:34Z @BalusC That is not entirely true. They both have a common subset, known as ascii, but half of iso-8859-1 is encoded different in utf-8. http://stackoverflow.com/questions/1820353/is-there-a-well-established-naming-convention-for-php-namespaces/1820419#1820419 Comment by troelskn on Is there a well-established naming convention for PHP namespaces? troelskn 2009-11-30T19:49:00Z 2009-11-30T19:49:00Z Uhm .. but the question was about namespaces. http://stackoverflow.com/questions/1820353/is-there-a-well-established-naming-convention-for-php-namespaces/1820419#1820419 Comment by troelskn on Is there a well-established naming convention for PHP namespaces? troelskn 2009-11-30T18:43:36Z 2009-11-30T18:43:36Z Doesn't say anything about namespaces though. http://stackoverflow.com/questions/1816051/wildcard-replace-in-php/1816307#1816307 Comment by troelskn on Wildcard replace in PHP troelskn 2009-11-30T09:40:45Z 2009-11-30T09:40:45Z @bart Good point. I've updated the answer. http://stackoverflow.com/questions/1813890/javascript-pseudoclass-handling-in-php Comment by troelskn on Javascript Pseudoclass handling in php troelskn 2009-11-28T22:58:58Z 2009-11-28T22:58:58Z Seriously Ragnagard, it makes no sense. Can you do as Magnar requested and post some example code? http://stackoverflow.com/questions/895296/how-can-you-tell-if-a-person-is-a-programmer/895310#895310 Comment by troelskn on How can you tell if a person is a programmer? troelskn 2009-11-27T13:52:50Z 2009-11-27T13:52:50Z Worse yet - He assumes programmers are Java programmers. http://stackoverflow.com/questions/1772640/parsing-this-xml-feed-using-php/1772723#1772723 Comment by troelskn on Parsing this XML feed using PHP troelskn 2009-11-20T20:05:37Z 2009-11-20T20:05:37Z They use the same underlying parse (libxml), so it's just syntax. Personally I like DOM better because it's a standard api. It's just a preference. http://stackoverflow.com/questions/1768337/php-understanding-code-via-function-or-file-tracing-without-xdebug/1768353#1768353 Comment by troelskn on PHP: Understanding code via function or file tracing (without XDebug) troelskn 2009-11-20T07:52:25Z 2009-11-20T07:52:25Z Ask the previous developers for the source code. http://stackoverflow.com/questions/1754793/prevent-file-differences-between-live-and-staging-websites-and-system-scripts-ph/1754887#1754887 Comment by troelskn on Prevent file differences between live and staging websites AND system scripts (PHP) troelskn 2009-11-18T13:20:06Z 2009-11-18T13:20:06Z @tom you can set the env before running the command, or you can run it as two different users? http://stackoverflow.com/questions/1754793/prevent-file-differences-between-live-and-staging-websites-and-system-scripts-ph/1754887#1754887 Comment by troelskn on Prevent file differences between live and staging websites AND system scripts (PHP) troelskn 2009-11-18T13:19:35Z 2009-11-18T13:19:35Z @Johannes: You're right (Though <code>$&#95;SERVER</code> would work too). http://stackoverflow.com/questions/1743623/how-to-decode-unicode-characters-in-php/1743635#1743635 Comment by troelskn on how to decode unicode characters in php troelskn 2009-11-17T11:18:59Z 2009-11-17T11:18:59Z @someone: Yes, that's because <code>utf8&#95;decode</code> translates from utf8-&gt;iso-8859-1 and you are using windows-1252, not iso-8859-1. See my answer. http://stackoverflow.com/questions/1743509/web-based-project-management-and-time-keeping-software/1743842#1743842 Comment by troelskn on web-based project management and time keeping software? troelskn 2009-11-16T20:12:52Z 2009-11-16T20:12:52Z The problem is there are so many. And they are all slightly different. And they are all good, provided that they fit your reality. If you just pick one with a lot of features that you don't really need, you're creating bureaucracy - Not preventing it. You <i>need</i> to define your process before you pick the tool. http://stackoverflow.com/questions/1743623/how-to-decode-unicode-characters-in-php/1743635#1743635 Comment by troelskn on how to decode unicode characters in php troelskn 2009-11-16T18:16:34Z 2009-11-16T18:16:34Z Seems like he is using windows-1252, not iso-8859-1. http://stackoverflow.com/questions/1743623/how-to-decode-unicode-characters-in-php/1743635#1743635 Comment by troelskn on how to decode unicode characters in php troelskn 2009-11-16T18:06:59Z 2009-11-16T18:06:59Z Not really true, I'm afraid. <code>mb&#95;detect&#95;encoding</code> makes a guess, based on heuristics. It has all sorts of pitfalls. Specifically, it's useless for distinguishing between various <code>iso-8859-X</code> encodings. http://stackoverflow.com/questions/1738629/php-parse-error-drupal6-deployment Comment by troelskn on PHP Parse Error; Drupal6 Deployment troelskn 2009-11-15T22:30:14Z 2009-11-15T22:30:14Z Well then, that's your problem right there.