Run Your Set Calls as a Batch

This one comes from Nate. Instead of repetitive $this->set calls, you can set all your variables in one go using the PHP compact function.

$var1 = 'text';
$var2 = 'text';
$var3 = 'text';

$this->set( compact('var1','var2','var3') );

Thanks, Nate.

Published August 18, 2006 · Updated August 18, 2006
Categorized as CakePHP
Short URL: http://snook.ca/s/695

Conversation

0 Comments · RSS feed
Sorry, comments are closed for this post. If you have any further questions or comments, feel free to send them to me directly.