User Preston - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T03:35:34Zhttp://stackoverflow.com/feeds/user/25213http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1481451/create-an-httprequest-from-environment0Create an HttpRequest from environmentPreston2009-09-26T15:24:20Z2009-09-28T21:44:22Z
<p>Can I get a HttpRequest automatically created from the environment? In other words, right now it seems like you have to...</p>
<pre><code>$request = new HttpRequest;
$request->setCookies($_COOKIE);
$request->setHeaders(apache_request_headers());
$request->setPostFields($_POST);
$request->setQueryData($_GET);
$request->setRawPostData(file_get_contents('php://input'));
$request->setUrl($_SERVER['REQUEST_URI'']);
</code></pre>
<p>We also need to set the method -- a ridiculous chore, since $_SERVER['REQUEST_METHOD'] is a string and HttpRequest::setMethod takes an int in the HTTP_METH_* series of contants. So you have to set up your own mapping.</p>
<p>I want to like HttpRequest, but it seems cumbersome to use at the moment. I hope I'm missing something.</p>
<p><hr /></p>
<h2>Edit:</h2>
<p>The idea is to make testing cleaner. $_COOKIE and friends are superglobals. How do you test that?</p>
<pre><code>function receiveRequest() {
$code = 'that touches superglobals like' . $_COOKIE['example'];
$response = new HttpResponse;
$response->setStatus(200);
return $response;
}
function testServer() {
$oldCookie = $_COOKIE;
$oldPost = $_POST;
// etc...
$_COOKIE = array('example' => 'stuff');
$_POST = array();
// etc...
$response = receiveRequest();
$_COOKIE = $oldCookie;
$_POST = $oldPost;
// etc...
assert($response->getStatus() === 200);
}
</code></pre>
<p>You need to control the state of not just what you use -- $_COOKIE in this example -- but every superglobal. <strong>There are about a dozen.</strong> It would be a lot cleaner to wrap up all that stuff in HttpRequest.</p>
<pre><code>function receiveRequest(HttpRequest $request) {
$code = 'is purely a function of arguments like' . $request->getCookie('example');
$response = new HttpResponse;
$response->setStatus(200);
return $response;
}
function testServer() {
$request = new HttpRequest;
$request->setCookie('example' => 'stuff');
$response = receiveRequest($request);
assert($response->getStatus() === 200);
}
</code></pre>
<p>Then my actual server.php would use the hypothetical static method that I'm looking for.</p>
<pre><code>$request = HttpRequest::generateRequestFromEnvironment($_COOKIE, $_POST, ...);
unset($_COOKIE, $_POST, ...);
$response = receiveRequest($request);
$response->send();
</code></pre>
http://stackoverflow.com/questions/209906/compile-regex-in-php7Compile regex in PHPPreston2008-10-16T19:25:06Z2009-04-06T14:02:08Z
<p>Is there a way in PHP to compile a regular expression, so that it can then be compared to multiple strings without repeating the compilation process? Other major languages can do this -- Java, C#, Python, Javascript, etc.</p>
http://stackoverflow.com/questions/350920/php-new-operator-returning-reference1PHP new operator returning referencePreston2008-12-08T21:15:17Z2009-01-24T13:54:57Z
<p>I'm working with some old PHP code that has a lot of the following:</p>
<pre><code>$someVar =& new SomeClass();
</code></pre>
<p>Did the <strong>new</strong> operator ever return a value, um, not by reference? (That feels strange to type. I feel like I'm losing my mind.)</p>
http://stackoverflow.com/questions/359829/best-solution-for-autoload/430509#4305091Answer by Preston for Best solution for __autoload Preston2009-01-10T03:28:12Z2009-01-10T03:28:12Z<p>We use something much like the last option, except with a file_exists() check before the require. If it doesn't exist, rebuild the cache and try once more. You get the extra stat per file, but it handles moves transparently. Very handy for rapid development where I move or rename things frequently.</p>
http://stackoverflow.com/questions/429104/best-practices-for-bit-flags-in-php/430440#4304400Answer by Preston for Best practices for bit flags in PHPPreston2009-01-10T02:43:17Z2009-01-10T02:43:17Z<p>In your <a href="http://en.wikipedia.org/wiki/Entity-relationship_model" rel="nofollow">model</a>, the object has 8 boolean properties. That implies 8 boolean (TINYINT for MySQL) columns in your database table and 8 getter/setter methods in your object. Simple and conventional.</p>
<p>Rethink your current approach. Imagine what the next guy who has to maintain this thing will be saying.</p>
<pre><code>CREATE TABLE mytable (myfield BIT(8));
</code></pre>
<p>OK, looks like we're going to have some binary data happening here.</p>
<pre><code>INSERT INTO mytable VALUES (b'00101000');
</code></pre>
<p>Wait, somebody tell me again what each of those 1s and 0s stands for.</p>
<pre><code>SELECT * FROM mytable;
+------------+
| mybitfield |
+------------+
| ( |
+------------+
</code></pre>
<p>What?</p>
<pre><code>SELECT * FROM mytable WHERE myfield & b'00101000' = b'00100000';
</code></pre>
<p>WTF!? WTF!?</p>
<p><em>stabs self in face</em></p>
<p><hr /></p>
<p>-- meanwhile, in an alternate universe where fairies play with unicorns and programmers don't hate DBAs... --</p>
<pre><code>SELECT * FROM mytable WHERE field3 = 1 AND field5 = 0;
</code></pre>
<p>Happiness and sunshine!</p>
http://stackoverflow.com/questions/191883/how-can-i-use-array-references-inside-arrays-in-php/430284#4302840Answer by Preston for How can I use array-references inside arrays in PHP?Preston2009-01-10T00:46:55Z2009-01-10T00:46:55Z<p>The function end() doesn't just return a value. It also moves the array's internal pointer. Then we can use key() to get the index, after which we're able to use regular array access for the assignment.</p>
<pre><code>$normal_array = array();
$array_of_arrayrefs = array( &$normal_array );
end($array_of_arrayrefs);
$array_of_arrayrefs[ key($array_of_arrayrefs) ]["one"] = 1;
print $normal_array["one"];
</code></pre>
http://stackoverflow.com/questions/407980/reference-counting-in-php1Reference counting in PHPPreston2009-01-02T20:50:03Z2009-01-03T15:40:36Z
<p>I'd like to implement database caching functionality in PHP based on reference counts. For example, code to access the record in table <strong>foo</strong> with an ID of 1 might look like:</p>
<pre><code>$fooRecord = $fooTable->getRecord(1);
</code></pre>
<p>The first time this is called, $fooTable fetches the appropriate record from the database, stores it in an internal cache, and returns it. Any subsequent calls to getRecord(1) will return another reference to the same object in memory. $fooRecord signals $fooTable when it destructs, and if there are no remaining references, it stores any changes back to the database and removes it from the cache.</p>
<p>The problem is that PHP's memory management abstracts away the details about reference counts. I've searched PECL and Google for an extension to do so, but found no results. So question #1 is: does such an extension exist?</p>
<p>In an alternative approach, $fooTable returns a super-sneaky fake object. It pretends to be the record by forwarding __call(), __set(), and __get(), and its constructor and destructor provide the appropriate hooks for reference counting purposes. Tests, works great, except that it breaks type-hinting. All my methods that were expecting a FooRecord object now get a Sneaky object, or maybe a FooSneaky if I feel like creating an empty subclass of Sneaky for <em>every one of my tables</em>, which I do not. Also, I'm afraid it will confuse maintenance programmers (such as myself).</p>
<p>Question #2: Is there another approach I've missed?</p>
http://stackoverflow.com/questions/306272/how-do-i-create-a-dispatch-table-within-a-class-in-php/311927#3119270Answer by Preston for How do I create a dispatch table within a class in PHP?Preston2008-11-22T23:59:12Z2008-11-22T23:59:12Z<p>See the <a href="http://php.net/callback" rel="nofollow">callback pseudo-type</a> in the manual.</p>
http://stackoverflow.com/questions/283004/getting-the-name-of-a-child-class-in-the-parent-class-static-context/292268#2922680Answer by Preston for Getting the name of a child class in the parent class (static context)Preston2008-11-15T07:23:44Z2008-11-15T07:23:44Z<p>The problem is not a language limitation, it is your design. Never mind that you have classes; the static methods belie a procedural rather than object-oriented design. You're also using global state in some form. (How does <code>get_row_from_db_as_array()</code> know where to find the database?) And finally it looks very difficult to unit test.</p>
<p>Try something along these lines.</p>
<pre><code>$db = new DatabaseConnection('dsn to database...');
$userTable = new UserTable($db);
$user = $userTable->get(24);
</code></pre>
http://stackoverflow.com/questions/282150/how-do-i-write-unit-tests-in-php/292253#2922534Answer by Preston for How do I write unit tests in PHP?Preston2008-11-15T06:59:22Z2008-11-15T06:59:22Z<p>Unit testing isn't very effective unless you change your coding style to accommodate it. I recommend browsing the <a href="http://googletesting.blogspot.com/" rel="nofollow">Google Testing Blog</a>, in particular <a href="http://googletesting.blogspot.com/2008/08/by-miko-hevery-so-you-decided-to.html" rel="nofollow">This post</a>.</p>
http://stackoverflow.com/questions/292068/is-it-better-to-use-obgetcontents-or-text-test/292219#2922194Answer by Preston for Is it better to use ob_get_contents() or $text .= 'test';Preston2008-11-15T06:03:38Z2008-11-15T06:27:11Z<p>Output buffers have all the pitfalls of global variables. You have to be aware of all execution paths from the <code>ob_start()</code> to the <code>ob_get_clean()</code>. Are you sure it will get there, and that any buffers opened in between will have been closed? Keep in mind that code can throw exceptions. That can be a really fun bug for the next guy to track down.</p>
<p>On the other hand--and I hate to even mention it--at one time output buffering was somewhat faster at concatenating large strings, for reasons internal to PHP. I'm not sure if that is still true.</p>
http://stackoverflow.com/questions/243200/php-idioms/245663#2456635Answer by Preston for PHP Idioms?Preston2008-10-29T03:07:07Z2008-10-29T03:07:07Z<p>Ultimately, you'll get the most out of PHP first by learning generally good programming practices, befure focusing on anything PHP-specific. Having said that...</p>
<p><hr /></p>
<h2>Apply liberally for fun and profit:</h2>
<ol>
<li><p>Iterators in foreach loops. There's almost never a wrong time.</p></li>
<li><p>Design around class autoloading. Use spl_autoload_register(), not __autoload(). For bonus points, have it scan a directory tree recursively, then feel free to reorganize your classes into a more logical directory structure.</p></li>
<li><p>Typehint everywhere. Use assertions for scalars.</p>
<p>function f(SomeClass $x, array $y, $z) {
assert(is_bool($z))
}</p></li>
<li><p>Output something other than HTML.</p>
<p>header('Content-type: text/xml'); // or text/css, application/pdf, or...</p></li>
<li><p>Learn to use exceptions. Write an error handler that converts errors into exceptions.</p></li>
<li><p>Replace your define() global constants with class constants.</p></li>
<li><p>Replace your Unix timestamps with a proper Date class.</p></li>
<li><p>In long functions, unset() variables when you're done with them.</p></li>
</ol>
<p><hr /></p>
<h2>Use with guilty pleasure:</h2>
<ol>
<li><p>Loop over an object's data members like an array. Feel guilty that they aren't declared private. This isn't some heathen language like Python or Lisp.</p></li>
<li><p>Use output buffers for assembling long strings.</p>
<p>ob_start();
echo "whatever\n";
debug_print_backtrace();
$s = ob_get_clean();</p></li>
</ol>
<p><hr /></p>
<h2>Avoid unless absolutely necessary, and probably not even then, unless you really hate maintenance programmers, and yourself:</h2>
<ol>
<li><p>Magic methods (__get, __set, __call)</p></li>
<li><p>extract()</p></li>
<li><p>Structured arrays -- use an object</p></li>
</ol>
http://stackoverflow.com/questions/1481451/create-an-httprequest-from-environment/1481459#1481459Comment by Preston on Create an HttpRequest from environmentPreston2009-09-28T15:14:13Z2009-09-28T15:14:13ZI want to request data from my own API. And I want to unit test that API. It seems like the whole point of HttpRequest, to abstract incoming and outgoing requests into the same class. After all, they <b>are</b> the same thing.http://stackoverflow.com/questions/1274792/is-returning-null-bad-design/1274891#1274891Comment by Preston on Is returning null bad design?Preston2009-08-14T04:54:07Z2009-08-14T04:54:07ZIf you try to <i>use</i> an attribute with no value, that merits an exception. (I'm assuming your spec says the attribute is optional.) Have a separate method to check whether its value has been set.http://stackoverflow.com/questions/1274792/is-returning-null-bad-design/1274807#1274807Comment by Preston on Is returning null bad design?Preston2009-08-14T04:34:06Z2009-08-14T04:34:06ZIt's easier to spot the presence of an empty catch block than the absence of a null-check.http://stackoverflow.com/questions/168736/how-do-you-set-a-default-value-for-a-mysql-datetime-column/168832#168832Comment by Preston on How do you set a default value for a MySQL Datetime column?Preston2009-01-26T16:57:12Z2009-01-26T16:57:12ZTIMESTAMP changes when you update the row. Different behavior than DATETIME -- you can't just substitute one for the other.http://stackoverflow.com/questions/359829/best-solution-for-autoload/362916#362916Comment by Preston on Best solution for __autoload Preston2009-01-10T03:12:00Z2009-01-10T03:12:00ZCheck out RecursiveDirectoryIterator.http://stackoverflow.com/questions/359829/best-solution-for-autoload/360054#360054Comment by Preston on Best solution for __autoload Preston2009-01-10T03:09:00Z2009-01-10T03:09:00ZTwo big advantages of autoload are 1) not having to manually load classes before using them and 2) not hard coding their locations in the file system. You've undone both.http://stackoverflow.com/questions/416914/optimizing-php-string-concatenation/416966#416966Comment by Preston on Optimizing PHP string concatenationPreston2009-01-10T02:55:45Z2009-01-10T02:55:45ZYou're spent more time reading these comments than will ever by saved across all the apps you ever write in your entire lifetime by switching from " to '.http://stackoverflow.com/questions/429104/best-practices-for-bit-flags-in-php/429222#429222Comment by Preston on Best practices for bit flags in PHPPreston2009-01-10T02:47:17Z2009-01-10T02:47:17ZVilx: Not so. Changes will have to be reflected in the database under either method.http://stackoverflow.com/questions/370972/which-common-features-of-desktop-applications-do-most-web-applications-miss/371010#371010Comment by Preston on Which common features of desktop applications do most web applications miss?Preston2008-12-17T03:35:49Z2008-12-17T03:35:49ZSVG and Canvas fill that gap somewhat.http://stackoverflow.com/questions/363591/why-do-programmers-have-such-ridiculously-prickly-personalities/363606#363606Comment by Preston on Why do programmers have such ridiculously prickly personalities? Preston2008-12-13T23:14:06Z2008-12-13T23:14:06ZAre people not said to "mellow with age?"http://stackoverflow.com/questions/346487/job-exit-interviews-how-to-handle-them-how-to-prepare/347557#347557Comment by Preston on Job exit interviews: how to handle them, how to prepare?Preston2008-12-07T21:32:54Z2008-12-07T21:32:54ZThat's good advice with relationships, as well.http://stackoverflow.com/questions/329724/how-do-you-handle-templates-for-mvc-websites-php/331372#331372Comment by Preston on How do you handle templates for MVC websites? [PHP]Preston2008-12-02T04:56:51Z2008-12-02T04:56:51Z$_SESSION should not be used here. We're not carrying data over to the next request. Otherwise you're headed in the right direction.http://stackoverflow.com/questions/304769/how-to-recognize-a-good-programmer/304781#304781Comment by Preston on How to recognize a good programmer?Preston2008-11-24T01:50:47Z2008-11-24T01:50:47ZPassion doesn't necessarily translate into professionalism or teamwork. They might just want to code what's cool/fun, not what needs coding.http://stackoverflow.com/questions/283222/best-way-to-substitute-variables-in-plain-text-using-php/283232#283232Comment by Preston on Best way to substitute variables in plain text using PHPPreston2008-11-15T06:45:08Z2008-11-15T06:45:08ZUse \b for work boundaries, like: /$\w\b/http://stackoverflow.com/questions/243200/php-idioms/245663#245663Comment by Preston on PHP Idioms?Preston2008-10-31T05:57:55Z2008-10-31T05:57:55Zspl_autoload_register() allows multiple autoload functions to exist. Useful for combining code from multiple sources.