User dcousineau - Stack Overflowmost recent 30 from stackoverflow.com2009-12-21T13:28:06Zhttp://stackoverflow.com/feeds/user/20265http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1527354/recursive-function-best-practices-what-are-they/1527379#15273796Answer by dcousineau for Recursive function best practices; What are they?dcousineau2009-10-06T18:52:54Z2009-10-06T18:52:54Z<p>That's pretty much it.</p>
<p>Recursive function design is pretty much just as simple as "Can I return a value yet or do I need to do further processing?" and "Processing returned a value with it, what do I do to it before I pass it along?"</p>
<p>Tail-recursion is just an optimization method that a compiler/interpreter can use to increase performance. Essentially, if your recursive function follows a strict format (nothing happens after the recursive call, usually meaning the recursive call is always paired with the <code>return</code>) the recursive function can be optimized and rewritten as a for-loop.</p>
http://stackoverflow.com/questions/1466744/how-to-flush-output-in-zf/1466785#14667850Answer by dcousineau for How to flush output in ZFdcousineau2009-09-23T15:33:38Z2009-09-23T15:33:38Z<p>Try maybe:</p>
<pre><code><?php
//...
public function someAction()
{
echo "Something";
ob_flush();flush();
}
</code></pre>
<p>This <a href="http://www.zfforums.com/zend-framework-components-13/model-view-controller-mvc-21/output-buffering-using-mvc-engine-1647.html" rel="nofollow">forum post</a> discusses your issue. They suggest:</p>
<pre><code><?php
$frontController = Zend_Controller_Front::getInstance();
$frontController->setParam('disableOutputBuffering', true);
</code></pre>
<p>And then performing the <code>ob_flush();flush();</code> technique.</p>
http://stackoverflow.com/questions/1466323/php-variables-maintaining-an-url-string/1466422#1466422-1Answer by dcousineau for PHP variables maintaining an URL string.dcousineau2009-09-23T14:39:02Z2009-09-23T14:39:02Z<p>NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO!</p>
<p>Remote file inclusion is a BAD idea, probably one of <strong>the</strong> biggest security flaws you can open up. Even for an internal tool this is not acceptable even if only purely for contributing bad habits.</p>
<p><strong>PHP by default disables this behavior</strong>, and there is a broad push to have the ability to perform an include on a URL <em>completely</em> stripped from PHP (as there is no compelling reason to have this ability).</p>
<p>If you want to load shared resources, go through a shared file system drive (as in, don't use <code>http</code>, <code>ftp</code>, anything but <code>file://</code>) or better yet distribute copies of <code>loader.php</code> through a version control system. Loading from a single file resource opens you up to problems in the future of say a new dev overwriting <code>loader.php</code> and breaking everyone else's code.</p>
http://stackoverflow.com/questions/1421504/are-there-any-alternatives-to-the-mvc-frameworks-for-php-that-would-be-considard/1421982#14219820Answer by dcousineau for Are there any alternatives to the MVC frameworks for PHP that would be considard best practice?dcousineau2009-09-14T14:39:42Z2009-09-15T20:10:21Z<p>MVC is still the industry standard for every Object Oriented web development language.</p>
<p>However you are afforded some alternate routes:</p>
<ol>
<li>Micro Frameworks (<a href="http://www.google.com/search?q=php+micro+framework" rel="nofollow">Google Them</a>) (which most often still use MVC design patters, just not as formalized and some not in an Object Oriented fashion)</li>
<li>Event-Based Frameworks (like <a href="http://www.pradosoft.com/" rel="nofollow">PRADO</a>)</li>
</ol>
<p>However beyond those routes you are a bit out of luck as far as I know.</p>
<p><em>Thanks Xeoncross, forgot to add the "micro usually are still mvc" caveat</em></p>
http://stackoverflow.com/questions/1420786/php-alternating-weeks-logic/1422142#14221420Answer by dcousineau for PHP, alternating weeks logicdcousineau2009-09-14T15:06:04Z2009-09-14T15:06:04Z<p>Something to keep in mind is that the <a href="http://php.net/strtotime" rel="nofollow"><code>strtotime()</code></a> function is very robust and can give you fuzzy information like <a href="http://www.toosweettobesour.com/2009/03/10/calculating-daylight-savings-time-boundary-in-php/" rel="nofollow">the second Sunday in March (<code>"Second Sunday March 0"</code>)</a>.</p>
<p>For example, to find the Sunday that marks the second week of this month:</p>
<pre><code><?php
$month = time();
// Calculate the first day of the month contained in the $month timestamp
$first_day = strtotime(
date(
'Y-m-1 00:00:00',
$month
)
);
// Calculate the sunday opening the week that contains the first day
// of the month (e.g. August 30th, 2009 is the Sunday that corresponds
// to September 1st, 2009)
$pseudo_first_sunday = strtotime(
'First Sunday',
strtotime(
'-1 Week',
$first_day
)
);
var_dump(date( 'Y-m-d', strtotime('Second Week', $pseudo_first_sunday) ));
</code></pre>
<p>The output of this script will be (as of 2009-9-14):</p>
<pre><code>string(10) "2009-09-06"
</code></pre>
<p>Which is the second week of September (however not the second FULL week, if you want that substitute <code>$first_day</code> in for <code>$pseudo_first_sunday</code>).</p>
<p>Just something to keep in mind when playing with dates in PHP.</p>
http://stackoverflow.com/questions/1347019/problems-with-special-characters-in-php-soap-client/1347352#13473520Answer by dcousineau for Problems with special characters in php soap clientdcousineau2009-08-28T14:27:19Z2009-08-28T14:27:19Z<p>Is the SOAP server a Windows based server? I've noticed that some times Windows based servers or applications will not send <code>UTF-8</code>, but instead send in <a href="http://en.wikipedia.org/wiki/Windows-1252" rel="nofollow"><code>cp1252</code></a>.</p>
<p>In one app where I had special chars coming down in that encoding, I would just run the following code on my HTML output:</p>
<pre><code><?php
print htmlentities($string, ENT_COMPAT, 'cp1252');
</code></pre>
<p>To ensure any special characters were encoded for HTML output.</p>
http://stackoverflow.com/questions/1341494/what-could-cause-a-failure-in-php-serialize-function/1341609#13416091Answer by dcousineau for What could cause a failure in PHP serialize function?dcousineau2009-08-27T14:50:55Z2009-08-27T14:50:55Z<p>@Greg is correct in that you cannot serialize resources.</p>
<p>Given that you describe your objects as "Data objects" I have a feeling that they contain your database connection resources? (e.g. <code>$object->rs = mysql_connect(...);</code>).</p>
<p><strong>If so</strong>, consider using <a href="http://us.php.net/manual/en/language.oop5.magic.php" rel="nofollow"><code>__sleep()</code> and <code>__wakeup()</code></a> functions in your data objects (<code>__sleep()</code> is called immediately before serialization, <code>__wakeup()</code> immediately after de-serialization).</p>
<p>The <code>__sleep()</code> function should close any database or file resources while the <code>__wakeup()</code> function should reconnect to the database.</p>
<p>The PHP manual entry I linked above has an example of a class that manages a DB connection that is serializeable:</p>
<pre><code><?php
class Connection {
protected $link;
private $server, $username, $password, $db;
public function __construct($server, $username, $password, $db)
{
$this->server = $server;
$this->username = $username;
$this->password = $password;
$this->db = $db;
$this->connect();
}
private function connect()
{
$this->link = mysql_connect($this->server, $this->username, $this->password);
mysql_select_db($this->db, $this->link);
}
public function __sleep()
{
return array('server', 'username', 'password', 'db');
}
public function __wakeup()
{
$this->connect();
}
}
</code></pre>
http://stackoverflow.com/questions/1337637/count-similar-array-keys/1338587#13385870Answer by dcousineau for Count Similar Array Keysdcousineau2009-08-27T02:40:36Z2009-08-27T02:40:36Z<p>Though there be plenty of examples, if you're guaranteed that the numbers should be contiguous, I usually take the approach:</p>
<pre><code><?php
$i = 1;
while( isset($_POST['product'.$i) )
{
// do something
$i++;
}
</code></pre>
http://stackoverflow.com/questions/61401/hidden-features-of-php/1024891#10248918Answer by dcousineau for Hidden Features of PHP?dcousineau2009-06-21T22:29:09Z2009-08-25T13:53:36Z<p>The <code>static</code> keyword is useful outside of a OOP standpoint. You can quickly and easily implement 'memoization' or function caching with something as simple as:</p>
<pre><code><?php
function foo($arg1)
{
static $cache;
if( !isset($cache[md5($arg1)]) )
{
// Do the work here
$cache[md5($arg1)] = $results;
}
return $cache[md5($arg1)];
}
?>
</code></pre>
<p>The <code>static</code> keyword creates a variable that persists only within the scope of that function past the execution. This technique is great for functions that hit the database like <code>get_all_books_by_id(...)</code> or <code>get_all_categories(...)</code> that you would call more than once during a page load.</p>
<p><em>Caveat:</em> Make sure you find out the best way to make a key for your hash, in just about every circumstance the <code>md5(...)</code> above is NOT a good decision (speed and output length issues), I used it for illustrative purposes. <code>sprintf('%u', crc32(...))</code> or <code>spl_object_hash(...)</code> may be much better depending on the context.</p>
http://stackoverflow.com/questions/1328338/php-stdclass-object-accessing-ab/1328360#13283605Answer by dcousineau for PHP StdClass Object accessing a$bdcousineau2009-08-25T13:43:44Z2009-08-25T13:43:44Z<p>Try</p>
<pre><code>$x->{'media$title'}->{'$t'}
</code></pre>
<p>If you need to access a member in a PHP object that uses illegal characters (namely the $ sign, but also spaces, etc.), you can do the $obj->{'member name'} trick to access it.</p>
http://stackoverflow.com/questions/1257213/drupal-module-development-hookmenu-for-semi-static-pages0Drupal Module Development hook_menu() For Semi Static Pagesdcousineau2009-08-10T21:06:40Z2009-08-11T07:16:41Z
<p>I have a page that is definitely not a form but I need to use some callback functions to load data from an external source and display (e.g. a list of buildings on campus and their accessibility information).</p>
<p>What I have a need for is a landing listing page (lists all the buildings) and a 'view individual building' page. Also, I have a page where you punch in your student ID and view information on testing procedures. And finally I have a page that is basically a form (which I have done before successfully in the past).</p>
<p>Now, I <strong>HAD</strong> the building list working, however I made a small change and it stopped working!</p>
<p>Currently my hook_menu() function looks as below:</p>
<pre><code><?php
/**
* Implementation of hook_menu()
*/
function disability_menu()
{
$items = array();
// Ignore me, shell
$items['quickreg'] = array(
'title' => 'Quick Registration',
'description' => t(''),
'page callback' => 'drupal_get_form',
'page arguments' => array(),
'file' => 'disability.quickreg.view.inc',
'access arguments' => array('access quick registration system'),
'type' => MENU_SUGGESTED_ITEM,
);
$items['tests/status'] = array(
'title' => 'Test Status Results',
'description' => t('Check on the status of your tests'),
'page callback' => 'disability_view_testing_status',
'page arguments' => array(),
'file' => 'disability.tests.view.inc',
'access arguments' => array('access test check information'),
'type' => MENU_CALLBACK,
);
$items['tests'] = array(
'title' => 'Testing Services',
'description' => t('Check on the status of your tests'),
'page callback' => 'disability_view_testing',
'page arguments' => array(),
'file' => 'disability.tests.view.inc',
'access arguments' => array('access test check information'),
'type' => MENU_SUGGESTED_ITEM,
);
$items['access/%building'] = array(
'title' => 'Campus Accessibility Guide',
'description' => t('A summary list of detailed accessibliity information about each building on the A&M campus'),
'page callback' => 'disability_view_access',
'page arguments' => array(1),
'file' => 'disability.access.view.inc',
'access arguments' => array('access building access information'),
'type' => MENU_SUGGESTED_ITEM,
);
return $items;
}
</code></pre>
<p>Before some change I must have made the menu item for "Campus Accessibility Guide" would show up properly (after being enabled of course). The <code>/access</code> url would work correctly displaying a list of all building and the <code>/access/12345</code> would correctly display the single record of ID# 12345.</p>
<p>Now the <code>access/%building</code> menu entry is not even showing up and even sending the url <code>/access</code> into a redirect loop (making me think it's passing in <em>something</em> for the ID which sends it into the view specific function that redirects to <code>/access</code> when the ID doesn't exist).</p>
<p>Can anyone tell me what I'm doing wrong or what I need to do to support 2 themed pages: a <code>/access</code> and <code>/access/%building</code> url pattern?</p>
http://stackoverflow.com/questions/1257234/drupal-module-add-menu-item-to-primary-links1Drupal Module Add Menu Item To Primary Links?dcousineau2009-08-10T21:09:37Z2009-08-11T03:36:29Z
<p>Is it possible to add a menu item from within <code>hook_menu()</code> directly to the <code>primary-links</code> menu instead of <code>navigation</code> where they like to reside by default?</p>
http://stackoverflow.com/questions/1166660/object-orientated-common-methods-interfaces-abstract-or-something-else/1166723#11667230Answer by dcousineau for Object Orientated Common Methods: Interfaces, Abstract, or something else.dcousineau2009-07-22T17:05:18Z2009-07-22T17:05:18Z<p>If you're using PHP 5.3 you can indeed use a parent class and the new <code>static</code> keyword to determine the class of the child that had the static function called on it.</p>
<p>However I think you're best off just using the tried and true <code>new Object1($id);</code> method while doing all your setup tasks in your <code>__construct</code> method. Your code will be a little easier to read and maintain.</p>
<p>The load multiple example you may want to abstract out into a separate function to expedite the process.</p>
http://stackoverflow.com/questions/386914/how-would-i-implement-a-simple-site-search-with-php-and-mysql/386996#38699614Answer by dcousineau for How would I implement a simple site search with php and mySQL?dcousineau2008-12-22T18:40:50Z2008-12-22T18:40:50Z<p>Everyone is suggesting MySQL fulltext search, however you should be aware of a HUGE caveat. The Fulltext search engine is only available for the MyISAM engine (not InnoDB, which is the most commonly used engine due to its referential integrity and ACID compliance).</p>
<p>So you have a few options:</p>
<p><strong>1.</strong> The simplest approach is outlined by <a href="http://particletree.com/notebook/ranked-searches-with-sql/" rel="nofollow">Particle Tree</a>. You can actaully get ranked searches off of pure SQL (no fulltext, no nothing). The SQL query below will search a table and rank results based off the number of occurrences of a string in the search fields:</p>
<pre><code>SELECT
SUM(((LENGTH(p.body) - LENGTH(REPLACE(p.body, 'term', '')))/4) +
((LENGTH(p.body) - LENGTH(REPLACE(p.body, 'search', '')))/6))
AS Occurrences
FROM
posts AS p
GROUP BY
p.id
ORDER BY
Occurrences DESC
</code></pre>
<p><em>edited their example to provide a bit more clarity</em></p>
<p>Variations on the above SQL query, adding WHERE statements (WHERE p.body LIKE '%whatever%you%want'), etc. will probably get you exactly what you need.</p>
<p><strong>2.</strong> You can alter your database schema to support full text. Often what is done to keep the InnoDB referential integrity, ACID compliance, and speed without having to install plugins like <a href="http://www.sphinxsearch.com/" rel="nofollow">Sphinx Fulltext Search Engine</a> for MySQL is to split the quote data into it's own table. Basically you would have a table Quotes that is an InnoDB table that, rather than having your TEXT field "data" you have a reference "quote_data_id" which points to the ID on a Quote_Data table which is a MyISAM table. You can do your fulltext on the MyISAM table, join the IDs returned with your InnoDB tables and voila you have your results.</p>
<p><strong>3.</strong> Install <a href="http://www.sphinxsearch.com/" rel="nofollow">Sphinx</a>. Good luck with this one.</p>
<p>Given what you described, I would <strong>HIGHLY</strong> recommend you take the 1st approach I presented since you have a simple database driven site. The 1st solution is simple, gets the job done quickly. Lucene will be a bitch to setup especially if you want to integrate it with the database as Lucene is designed mainly to index files not databases. Google custom site search just makes your site lose tons of reputation (makes you look amateurish and hacked), and MySQL fulltext will most likely cause you to alter your database schema.</p>
http://stackoverflow.com/questions/386838/simple-reusable-crud-in-php-no-famework-or-big-classes/386936#3869363Answer by dcousineau for Simple / reusable CRUD in PHP (NO famework or big classes)dcousineau2008-12-22T18:19:01Z2008-12-22T18:19:01Z<p>By CRUD operations do you mean just the (tedious) database queries?</p>
<p>You could just as easily setup your database so that except for a few common fields amongst content types, all data for a particular content type is stored as a serialized associative array in a TEXT field.</p>
<p>This way you only need 1 set of queries to CRUD any particular content type since the data passed to the CRUD functions is just blindly serialized.</p>
<p>For example, say we declare that content title, created/updated date, tags, and short description are considered common data. From there we have a blog and a page content type.</p>
<p>I would possibly create a database table as such:</p>
<pre><code>CREATE TABLE `content` (
`id` INT UNSIGNED NOT NULL AUTO_INCREMENT,
`name` VARCHAR NOT NULL,
`short_description` TEXT NOT NULL,
`tags` TEXT ,
`data` TEXT ,
`content_type` INT NOT NULL,
`created_at` DATETIME NOT NULL,
`updated_at` DATETIME NOT NULL,
PRIMARY KEY (`id`)
)
</code></pre>
<p>*(Go ahead and assume we'll create the reference tables for content_type)*</p>
<p>And while the blog might require data like "pingbacks" and the page might require nothing but the body, you just store the output of something like the below example for a blog:</p>
<pre><code>$data = serialize(array(
"body" => "Lorem ipsum",
"pingbacks" => array()
));
</code></pre>
<p>Updates are easy, whenever you grab the data from the database you unserialize the data for editing into a form selected based on the content type. Displaying works the same way, just grab a template based on the content type and send it the unserialized data array. The template never needs to worry how the data is stored, just that it gets a $data['pingbacks'].</p>
<p>As for your forms, my suggestion is to break your anti OOP covenant and find a form generation library. If you can extract it from the framework, using <a href="http://framework.zend.com/manual/en/zend.form.html" rel="nofollow">Zend_Form</a> with <a href="http://framework.zend.com/manual/en/zend.config.html" rel="nofollow">Zend_Config</a> and <a href="http://framework.zend.com/manual/en/zend.validate.html" rel="nofollow">Zend_Validate</a> from the <a href="http://framework.zend.com/" rel="nofollow">Zend Framework</a> (all Zend_Config amounts to in this situation is a convenient interface to load and traverse XML and INI files) makes life really nice. You can have your XML files define the form for each content type, and all you would do is just render the form on your page (grabbing the XML based off of content type), grabbing the filtered data, removing the "common fields" like name, created/updated dates, then serializing what is left over into the database. No knowledge of the schema for a particular content type is required (unless you wish to be strict).</p>
<p>Though as a personal aside I would highly suggest you look into grabbing Zend_Form (with Zend_Validate and Zend_Config) as well as using <a href="http://www.doctrine-project.org/" rel="nofollow">Doctrine</a> as a ORM/database abstraction layer. You might find that at least Doctrine will make your life so much easier when it comes to running operations on the database.</p>
http://stackoverflow.com/questions/342777/zendpaginator-blurring-mvc-lines/344706#3447061Answer by dcousineau for Zend_Paginator blurring MVC linesdcousineau2008-12-05T18:12:41Z2008-12-05T18:12:41Z<p>You can provide an interface on your models that accepts <code>$current_page</code> and <code>$per_page</code> parameters and returns the current page's data set as well as a paginator object.</p>
<p>This way all your pagination code is contained within the model and you are free to use the Db adapters without feeling like you've broken the concept.</p>
<p>Plus, the controller really shouldn't be setting up the pager anyways since you are correct in it being tied to the data (and models are for data, not just database connections).</p>
<pre><code>class Model
{
//...
/**
* @return array Array in the form: array( 'paginator' => obj, 'resultset' => obj )
*/
public function getAll( $where = array(), $current_page = null, $per_page = null );
//...
}
</code></pre>
http://stackoverflow.com/questions/222544/other-packages-with-xdebug-like-features-informative-php-errors-formatted-vard/223887#2238871Answer by dcousineau for Other packages with Xdebug-like features (informative PHP errors, formatted var_dump()s, etc.)?dcousineau2008-10-21T23:09:28Z2008-12-04T16:51:11Z<p>As for your debugging you'll only find access through PHP extensions, regardless of what IDE you are using.</p>
<p>Xdebug is the most popular due to it's extra features, beyond that of what you've even described. Xdebug will do profiling (tracing) into the valgrind format that you can use programs like Kcachegrind and wincachegrind to evaluate.</p>
<p>Your only other real alternative to the debugging facilities Xdebug provides is Zend Debugger which is a part of the Zend Platform (again available as an extension).</p>
<p>As for the replacements, you won't find any other extensions that do the var_dump and error reporting replacements. And especially won't find (beyond Zend Debugger) a debugging protocol, and definitely won't find any other extension that does profiling.</p>
http://stackoverflow.com/questions/339202/php-include-file-strategy-needed/341235#3412355Answer by dcousineau for PHP include file strategy neededdcousineau2008-12-04T16:36:17Z2008-12-04T16:36:17Z<p>Usually, the standard conventions are thus: like @grepsedawk said, you'll want to define a constant that contains the root of your project folder and if you can the root of your includes folder:</p>
<pre><code>define('APP_ROOT', dirname(__FILE__));
define('INCLUDE_ROOT', APP_ROOT . "/includes");
</code></pre>
<p>Note: the constant name needs to be a string!</p>
<p>Also, you'll notice I'm using <code>dirname(__FILE__);</code>. If you place your constants definition file in a subdirectory, you can do a <code>dirname(dirname(__FILE__));</code>, which is the equivalent of a <code>../</code>. </p>
<p>Now some other caveats. While <code>PATH_SEPARATOR</code> is a cool constant, it is not needed. Windows accepts / or \ in path names, and since Linux only users / as a path separator, go ahead and always use a / instead of mucking up your code with repeated references to <code>PATH_SEPARATOR</code>.</p>
<p>Now that you have your root constants defined, what you'll do when you need a configuration file included is a simple:</p>
<pre><code>include INCLUDE_ROOT . '/path/to/some/file.php';
</code></pre>
<p>You'll probably want your constant definitions (the <code>define(...)</code>'s above) in a bootstrap script in your root directory:</p>
<blockquote>
<pre><code>www_root/
index.php
bootstrap.php
</code></pre>
</blockquote>
<p>The bootstrap will contain the defines (or an <code>include</code> of the constants file), as well as an <code>include</code> of any files that will be required by EVERY page.</p>
<p>And finally the last standard convention you may not use, but if you start doing object oriented programming, the most common method (the PEAR standard) is to name your classes by using an _ to separate namespaces:</p>
<pre><code>class GlobalNamespace_Namespace_Class
//...
</code></pre>
<p>And then organizing your file structure mapping name spaces to subdirectories (literally replacing all _'s with /'s):</p>
<blockquote>
<pre><code>include_dir/
GlobalNamespace/
Namespace/
Class.php
</code></pre>
</blockquote>
<p>And using <code>__autoload()</code> functions to load your classes, but that's another question.</p>
http://stackoverflow.com/questions/341154/php-logging-framework/341198#3411985Answer by dcousineau for PHP Logging framework?dcousineau2008-12-04T16:21:48Z2008-12-04T16:21:48Z<p>Zend Framework has a nice logging class <a href="http://framework.zend.com/manual/en/zend.log.html" rel="nofollow">Zend_Log</a>. Zend_Log has you set a <em>Writer</em>, <em>Filter</em>, and a <em>Formatter</em> which should give you a fairly robust amount of control.</p>
<p>I can't think of what it's dependencies are right off the bat, but if you do decide to use it, it's quick and easy to use and the Zend Framework comes with a <em>Writer</em> class that uses the Zend_Wildfire component (<a href="http://www.firephp.org/" rel="nofollow">FirePHP</a>), which would allow you to log directly to Firebug in your browser.</p>
<p>The only problem is you will have to spend some time extracting the logging classes out of the Zend Framework, but it shouldn't be too difficult. If it has no major dependencies you just grab <code>Log.php</code> and the <code>Log\</code> folder from the Zend Framework download.</p>
http://stackoverflow.com/questions/340930/unit-testing-in-web-applications-that-use-databases/341159#3411591Answer by dcousineau for Unit Testing in web applications that use databasesdcousineau2008-12-04T16:12:25Z2008-12-04T16:12:25Z<p>Since I used Doctrine for my PHP database work, and since Doctrine has a query abstraction layer (called DQL), I can swap out back ends without having to worry <em>too much</em> about compatibility issues. So in this case for my unit tests I would just at the beginning of my tests load the schema and fixtures into a SQLlite db, test my models, and discard the SQLlite db at the end of testing.</p>
<p>This way I've tested my models and data access to make sure their queries are formed correctly.</p>
<p>Now testing the specific database instance to make sure the current schema is correct is a different story and IMHO probably doesn't belong in your Unit Tests, so much as it belongs in your deployment task list.</p>
http://stackoverflow.com/questions/340194/zendvalidator-question/341114#3411142Answer by dcousineau for Zend_Validator Question?dcousineau2008-12-04T16:01:27Z2008-12-04T16:01:27Z<p>The Zend Framework does have a <a href="http://framework.zend.com/manual/en/zend.validate.set.html#zend.validate.set.alpha" rel="nofollow">Zend_Validate_Alpha</a> (as well as an <a href="http://framework.zend.com/manual/en/zend.validate.set.html#zend.validate.set.alnum" rel="nofollow">alphanumeric version</a>).</p>
<p>Normally it doesn't allow white space, but if you pass a <code>true</code> into the constructor of the
<a href="http://framework.zend.com/apidoc/core/Zend_Validate/Zend_Validate_Alpha.html#__construct" rel="nofollow">Zend_Validate_Alpha</a> class it will allow whitespace. Same with <a href="http://framework.zend.com/apidoc/core/Zend_Validate/Zend_Validate_Alnum.html#__construct" rel="nofollow">Zend_Validate_Alnum</a>.</p>
<p>For example:</p>
<pre><code>$validator = new Zend_Validate_Alpha(true); //will allow whitespace and non number letters
</code></pre>
http://stackoverflow.com/questions/220229/what-is-the-easiest-to-use-orm-framework-for-php/223836#2238364Answer by dcousineau for What is the easiest to use ORM framework for PHP?dcousineau2008-10-21T22:48:04Z2008-10-21T22:48:04Z<p>I'm a big fan of <a href="http://www.doctrine-project.org/" rel="nofollow">Doctrine</a> which is a full featured ORM that will be replacing Propel as Symfony's default ORM.</p>
<p>It's got your basic ORM stuff you'd expect along with a full featured query builder that I've found to be wonderful.</p>
<p>It comes with a full suite of command line tools to manage your databases. For example, you can create your schemas and fixtures in YAML, have Doctrine generate classes based on your Schema, create the database, create the schema based on the models, then populate the database with your fixtures all with a single <code>./doctrine build-all-reload</code>.</p>
<p>It also includes support for database migrations and <a href="http://www.doctrine-project.org/blog/new-to-migrations-in-1-1" rel="nofollow">recently updated</a> the migrations to automatically diff and generate your migration models.</p>
<p><strong>As per your doctrine complaints, you can run a command <code>./doctrine generate-models-db</code> or <code>./doctrine generate-yaml-db</code> to automatically create models and yaml files respectively from your current database setup.</strong></p>
<p>Other niceties include "<a href="http://www.doctrine-project.org/documentation/manual/1_0?one-page#behaviors" rel="nofollow">Behaviors</a>" which makes life much easier when implementing certain, well, behaviors in your schema. For example you can add the "Timestampable" behavior to your class file. Doctine automatically adds a 'created_at' and 'updated_at' column, populates them, and every <code>$object->save()</code> you run automatically updates the 'updated_at' column. More complex behaviors include i18n, table versioning, and trees (though really only NestedSet).</p>
<p>Personally I've been extremely enamored with Doctrine and rave about it every chance I get.</p>
http://stackoverflow.com/questions/223677/converting-a-sed-string-to-php/223743#2237431Answer by dcousineau for Converting a sed string to PHPdcousineau2008-10-21T22:19:53Z2008-10-21T22:34:58Z<p>Your specific SED example is obviously 2 regular expressions, 1 being replacing the commas, and one being technically grabbing the 9 digit continuous numbers.</p>
<p>The first half of your SED string is best fit with the <code>preg_replace()</code> function.</p>
<pre><code>//`sed s/regex/replace_value/flags`
preg_replace('/regex/flags', 'replace_value', $input);
</code></pre>
<p>The second half of your SED string would be a <code>preg_match_all()</code>:</p>
<pre><code>//`sed ...;s/regex/\1/flags`
$matches_array = array();
preg_match_all('/regex/flags', $input, &$matches_array);
</code></pre>
<p>So your specific code will look something like:</p>
<pre><code><?php
$input = file_get_contents('uglynumbers.txt');
$input = preg_replace('/[, ]/m','', $input);
$matches = array();
//No need for the .* or groupings, just match all occurrences of [0-9]{9}
if( preg_match_all('/[0-9]{9}/m', $input, $matches) )
{
//...
var_dump($matches);
}
</code></pre>
<p><hr /></p>
<p>It looks like 'g' is an SED modifier meaning match all lines. <code>preg_match_all()</code> should already takes care of this modifier but 'm' seems like an appropriate replacement as per the manual on <a href="http://php.net/manual/en/reference.pcre.pattern.modifiers.php" rel="nofollow">PCRE modifiers</a>.</p>
http://stackoverflow.com/questions/188414/best-xml-parser-for-php/190423#1904231Answer by dcousineau for Best XML Parser for PHPdcousineau2008-10-10T07:34:04Z2008-10-10T07:34:04Z<p>It depends on what you are trying to do with the XML files. If you are just trying to read the XML file (like a configuration file), The Wicked Flea is correct in suggesting SimpleXML since it creates what amounts to nested ArrayObjects. e.g. value will be accessible by $xml->root->child.</p>
<p>If you are looking to manipulate the XML files you're probably best off using <a href="http://php.net/domxml" rel="nofollow">DOM XML</a></p>
http://stackoverflow.com/questions/188789/how-to-perform-seam-carving-on-an-image-using-phps-gd-library/190415#1904152Answer by dcousineau for How to perform seam carving on an image using PHP's GD library?dcousineau2008-10-10T07:28:38Z2008-10-10T07:28:38Z<p>While you could implement this using GD, you're best bet if you can control the server environment is to create an external script/program to carve an image. PHP is going to be a huge bottleneck doing those kind of calculations. Even basic matrix transformations run a serious risk of hitting the max execution times set in PHP configs.</p>
http://stackoverflow.com/questions/188495/open-source-virgin-what-steps-to-take/190403#1904031Answer by dcousineau for Open Source Virgin - What steps to take?dcousineau2008-10-10T07:22:35Z2008-10-10T07:22:35Z<p>The only suggestion I can think of is keep your OSS license as open as you can. I know I personally try to avoid GPL licensed software due to the extreme Copy Left restrictions it has (anything I include it in automatically becomes GPL'ed). At the very least LGPL is the minimum license you should adopt but I personally prefer licensing my stuff under the MIT license (a lot of other PHP code is released under the new BSD license which is pretty much the same as the MIT license).</p>
http://stackoverflow.com/questions/177464/how-to-apply-the-mvc-pattern-to-gui-development/190095#1900952Answer by dcousineau for How to apply the MVC pattern to GUI developmentdcousineau2008-10-10T04:10:41Z2008-10-10T04:10:41Z<p>Most every GUI framework (from MFC to SWT to whatever) is already MVC based. In fact, the MVC pattern was first created by Smalltalk-80 and later first really used for GUI development.</p>
<p>Double check and look at the standards and suggested practices for your GUI toolkit of choice. Sometimes MVC won't be a good pattern to work with when solving a certain problem or working with a particular toolkit.</p>
<p>Remember: MVC is a great pattern but isn't a one size fits all solution, don't try and force a problem into MVC when event-based or functional style programming will make your life easier.</p>
http://stackoverflow.com/questions/189988/inline-class-instantiation-in-php-for-ease-of-method-chaining/190027#1900271Answer by dcousineau for "Inline" Class Instantiation in PHP? (For Ease of Method Chaining)dcousineau2008-10-10T03:33:18Z2008-10-10T03:54:53Z<p>The only way you can get something similar is with a factory or singleton static method. For example:</p>
<pre><code>class User
{
//...
/**
*
* @return User
*/
public static function instance()
{
$args = func_get_args();
$class = new ReflectionClass(__CLASS__);
return $class->newInstanceArgs($args);
}
//...
}
</code></pre>
<p>That uses the PHP5 reflection API to create a new instance (using any args sent to ::instance()) and returns it allowing you to do the chaining:</p>
<pre><code>$s = User::instance()->login()->get_db_data()->get_session_data();
</code></pre>
<p>By the way that code is flexible enough that the only thing you'll have to change when copying that static method is the PHPDoc comment's @return.</p>
<p><hr /></p>
<p>If you want to prematurely optimize your code like our friend Nelson you can replace the contents of User::instance() with:</p>
<pre><code>return new self();
</code></pre>
http://stackoverflow.com/questions/189075/as-a-web-designer-web-developer-conferences-which-ones-do-you-suggest/190060#1900601Answer by dcousineau for As a web designer/web developer, conferences... which ones do you suggest?dcousineau2008-10-10T03:47:32Z2008-10-10T03:47:32Z<p>For PHP specific conferences: I went to <a href="http://www.zendcon.com/" rel="nofollow">ZendCon</a> 08 this year and had a freaking blast. Got to meet all the influential badasses in the PHP world. The sessions were great and informative and the connections you can build are intense.</p>
<p>Beyond that I've heard good things about <a href="http://tek.phparch.com/" rel="nofollow">php|tek</a>.</p>
<p>Try and find any local <a href="http://barcamp.org/" rel="nofollow">BarCamp</a> events going on. Those are great places to connect with web types and they are free!</p>
<p>And finally I've heard people rave about OSCON which is put on by <a href="http://conferences.oreillynet.com/" rel="nofollow">O'Reilly</a>.</p>
http://stackoverflow.com/questions/135373/would-performance-suffer-using-autoload-in-php-and-searching-for-the-class-file/136958#1369580Answer by dcousineau for Would performance suffer using autoload in php and searching for the class file?dcousineau2008-09-25T23:49:01Z2008-09-25T23:49:01Z<p>Zend Framework's approach is to do autoload based on the PEAR folder standard (Class_Foo maps to /Class/Foo.php), however rather than using a set base path it uses the include_path.</p>
<p>The problem with their approach is there's no way to check beforehand if a file exists so the autoload will try to include a file that doesn't exist in any of the include_path's, error out, and never give any other autoload functions registered with spl_autoload_register a chance to include the file.</p>
<p>So a slight deviation is to manually provide an array of base paths where the autoload can expect to find classes setup in the PEAR fashion and just loop over the base paths:</p>
<pre><code><?php
//...
foreach( $paths as $path )
{
if( file_exists($path . $classNameToFilePath) )
include $path . $classNameToFilePath;
}
//...
?>
</code></pre>
<p>Granted you'll kinda be search but for each autoload you'll only be doing at worst n searches, where n is the number of base paths you are checking.</p>
<p>But if you find yourself still having to recursively scan directories the question is not "Will autoload hurt my performance," the question should be "why am I tossing my class files around in a random structure?" Sticking to the PEAR structure will save you so many headaches, and even if you decide to go with manually doing your includes as opposed to autoload, there will be no guessing as to where the class files are located when you do your include statements.</p>
http://stackoverflow.com/questions/185358/simple-php-orm/185471#185471Comment by dcousineau on Simple PHP ORMdcousineau2009-11-18T22:18:07Z2009-11-18T22:18:07ZDear god people, he made a valid suggestion that fit within the OP's parameters. Does ADODB suck? Maybe. Was it off topic or factually wrong? No. Don't down vote a guy because you disagree with his answer, down vote if the answer is factually incorrect or off topic.
You sir get a +1 to round this suggestion back up to 0.http://stackoverflow.com/questions/1525921/help-in-getting-hour-and-minute-in-php/1526226#1526226Comment by dcousineau on Help in getting Hour and Minute in PHPdcousineau2009-10-06T18:45:42Z2009-10-06T18:45:42ZThis is deprecated. You need to set your timezone in the actual PHP script (there's a strict error thrown when you don't). <a href="http://php.net/date-default-timezone-set" rel="nofollow">php.net/date-default-timezone-set</a> is the function you should use when setting your timezone in your PHP script.http://stackoverflow.com/questions/1526957/why-does-php-5-use-contruct-instead-of-classname-as-constructor/1527253#1527253Comment by dcousineau on Why does PHP 5 use __contruct() instead of className() as constructor?dcousineau2009-10-06T18:30:28Z2009-10-06T18:30:28ZHit submit too soon: "Technically PHP <b>4</b> had constructos..."http://stackoverflow.com/questions/1526957/why-does-php-5-use-contruct-instead-of-classname-as-constructor/1527253#1527253Comment by dcousineau on Why does PHP 5 use __contruct() instead of className() as constructor?dcousineau2009-10-06T18:29:49Z2009-10-06T18:29:49ZTechnically PHP had constructors. <code>Class Foo { function Foo() {} }</code>, the <code>Foo()</code> method would be called upon instantiation. <code>__construct()</code> was introduced for consistency with the new functions like <code>__destruct()</code>, <code>__get()</code>, <code>__set()</code>, and <code>__call()</code>. Plus you get the added benefit of easier refactoring if you modify a class name, one doesn't need to modify the constructor name.http://stackoverflow.com/questions/1526957/why-does-php-5-use-contruct-instead-of-classname-as-constructor/1526970#1526970Comment by dcousineau on Why does PHP 5 use __contruct() instead of className() as constructor?dcousineau2009-10-06T18:26:58Z2009-10-06T18:26:58Z@Click Upvote: <code>__autoload()</code> doesn't instantiate a class, so frankly it doesn't care whether you use <code>__construct()</code>, <code>CLASSNAME()</code>, or ignore the constructor completely. All <code>__autoload()</code> does is if a class is NOT defined, it reads the file that defines it. It's up to you to use the <code>new</code> keyword or whatever.http://stackoverflow.com/questions/1527056/how-to-do-word-wrapping/1527074#1527074Comment by dcousineau on How to do word wrapping.dcousineau2009-10-06T18:24:20Z2009-10-06T18:24:20ZThis is the best solution. Even using the <code>wordwrap()</code> function (<a href="http://php.net/wordwrap" rel="nofollow">php.net/wordwrap</a>) will not help as HTML will collapse whitespace and will treat it the same (of course you could wrap it in <pre> tags but then I'd just be getting pedantic).http://stackoverflow.com/questions/1466323/php-variables-maintaining-an-url-string/1466422#1466422Comment by dcousineau on PHP variables maintaining an URL string.dcousineau2009-09-23T15:24:12Z2009-09-23T15:24:12ZIf you don't want to listen to me, get on IRC: freenode.net #phpc. The PHP core maintainers, as well as pillars of the PHP community all congregate there and will all tell you the same thing, most from personal experience going down the same road of "oh it's just one quick hack and it's a private tool"http://stackoverflow.com/questions/1466323/php-variables-maintaining-an-url-string/1466422#1466422Comment by dcousineau on PHP variables maintaining an URL string.dcousineau2009-09-23T15:21:35Z2009-09-23T15:21:35ZYour analogy is bad. You're asking me to put rocket fuel in your Ford Taurus, and I'm telling you that while it might be possible, you want either an actual jet or plain old E87 gasoline. Industry standard practice for what you are trying to achieve is a centralized version control repository so your devs can have their own checked out copies of your <code>loader.php</code> file. Look into bit bucket and spend your time automating updates rather than going down ugly hack road. My route will at least give you a tool for other future logistics.http://stackoverflow.com/questions/1466323/php-variables-maintaining-an-url-string/1466422#1466422Comment by dcousineau on PHP variables maintaining an URL string.dcousineau2009-09-23T14:53:42Z2009-09-23T14:53:42ZThen shared drive is your best solution. I would HIGHLY suggest trusting the wisdom of the core PHP team, the community at large, and the entire software security industry and find a real, long term stable solution rather than a horribly dirty hack. But it's your funeral.http://stackoverflow.com/questions/1466323/php-variables-maintaining-an-url-string/1466375#1466375Comment by dcousineau on PHP variables maintaining an URL string.dcousineau2009-09-23T14:40:18Z2009-09-23T14:40:18ZI don't know the cut off version, but <b>PHP by default disables remote file inclusion</b>.http://stackoverflow.com/questions/1421504/are-there-any-alternatives-to-the-mvc-frameworks-for-php-that-would-be-considard/1422588#1422588Comment by dcousineau on Are there any alternatives to the MVC frameworks for PHP that would be considard best practice?dcousineau2009-09-15T20:13:42Z2009-09-15T20:13:42ZEven pure MVC doesn't preclude libraries and other abstractions. MVC by definition is the code execution path only flows between models, views, and controllers with those areas only performing certain tasks. Technically a 3rd party library for physics calculation would be considered a model, as (contrary to some popular belief) a model is not exclusively a table gateway class as some frameworks might lead one to believe.http://stackoverflow.com/questions/1421504/are-there-any-alternatives-to-the-mvc-frameworks-for-php-that-would-be-considard/1421982#1421982Comment by dcousineau on Are there any alternatives to the MVC frameworks for PHP that would be considard best practice?dcousineau2009-09-15T20:08:28Z2009-09-15T20:08:28ZXeoncross: hmm, I thought I had added that in (I had a long post I was writing then scrapped it and wrote the shorter version)...http://stackoverflow.com/questions/1420786/php-alternating-weeks-logic/1420820#1420820Comment by dcousineau on PHP, alternating weeks logicdcousineau2009-09-14T14:42:53Z2009-09-14T14:42:53Z@scragar: PHP is an interpreted language, meaning there are bottlenecks in the system that render any tiny optimizations you make moot. PHP is not built for sub-millisecond speed, it's built for ease of development and maintenence. <a href="http://www.google.com/search?q=premature+optimization" rel="nofollow">google.com/search?q=premature+optimization/…</a>http://stackoverflow.com/questions/1344576/possible-types-of-post-and-get-values/1344621#1344621Comment by dcousineau on Possible types of $_POST and $_GET valuesdcousineau2009-08-28T14:37:12Z2009-08-28T14:37:12ZFile uploads are not present in <code>$_POST</code> or <code>$_GET</code>, you have to check <code>$_FILES</code> for information on file uploads (and even then the contents are still arrays and strings).http://stackoverflow.com/questions/1346457/some-orm-using-pdo/1346504#1346504Comment by dcousineau on Some ORM using PDO?dcousineau2009-08-28T14:28:13Z2009-08-28T14:28:13ZMy 2 cents: Doctrine all the way.