User Michał Słaby - Stack Overflowmost recent 30 from stackoverflow.com2009-12-21T14:45:32Zhttp://stackoverflow.com/feeds/user/2169http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1866504/status-s-in-subversion1Status "S" in SubversionMichał Słaby2009-12-08T11:57:40Z2009-12-09T13:07:10Z
<p>At some point all files in my working copy got marked with "S" symbol as shown below:</p>
<pre><code>$ svn st
M S AclController.php
S InstallationController.php
S CustomerController.php
S RedirController.php
S IndexController.php
S LoginController.php
S OrderController.php
S ProductController.php
S SelfInstallController.php
S SelfcareController.php
</code></pre>
<p>Interestingly it occurs only int this particular working copy - when I checkout the project to new directory, it does not show the "S" marks.</p>
<p>How to get rid of this annoying "S" symbols? It significantly decreases clarity of WC status.</p>
<p><strong>Update:</strong> I do switch from time to time using standard <code>svn switch</code> syntax. It was never causing this "S" symbol to appear until recently. The command used to switch was:</p>
<pre><code>svn switch svn+ssh://xxxxxx/subversion/xxxxxxx/releases/1.0.16 .
</code></pre>
<p>Is there any way I can clear the "S" flag?</p>
http://stackoverflow.com/questions/1827674/how-to-solve-this-error-sessionstart-function-session-start-cannot-send-se/1827745#18277452Answer by Michał Słaby for How to solve this error? session_start() [function.session-start]: Cannot send session cache limiterMichał Słaby2009-12-01T17:38:58Z2009-12-01T17:38:58Z<p><strong>You are probably trying to start session after the output has begun.</strong> Starting a session involves setting HTTP headers. Header can be modified <em>only</em> before sending any output from PHP script. Some PHP installations have output buffering enabled, so it is actually possible to start outputting content before dealing with sessions - PHP engine will sort it out automatically. Apparently, on your system it's disabled by default. Try setting <a href="http://www.php.net/manual/en/outcontrol.configuration.php" rel="nofollow">output buffering</a> parameters in <code>php.ini</code> or <code>.htaccess</code> file. If that doesn't help, review your code and check if there is any HTML, echo/print statements before you call <code>session_start()</code>. Also, check for blank characters (new-line character, tab, space) before and after <code><?php</code> <code>?></code> tags. They all must go. Finally, check your editor settings and make sure that Unicode preambe is turned off.</p>
http://stackoverflow.com/questions/1761972/will-this-regular-expression-s-prevent-sql-injection-if-no-how-to-get-a/1762109#17621092Answer by Michał Słaby for Will this regular expression ^[^\s]+$ prevent SQL injection? if No how to get around the restriction?Michał Słaby2009-11-19T09:49:54Z2009-11-19T09:49:54Z<p><strong>Never use regular expressions to filter out SQL string</strong> - you will fail miserably. Use prepared statements instead. Here's an example when using PDO:</p>
<pre><code>$sql = "
SELECT * FROM users
WHERE login = :l AND password = :p
";
$pdo = new PDO($dsn, $dbUser, $dbPassword);
$stmt = $pdo->prepare($sql);
$stmt->bindValue('l', $_POST['login']);
$stmt->bindValue('p', md5($_POST['password']));
$stmt->execute();
print_r($stmt->fetch());
</code></pre>
<p>This may look like considerably more typing, but it is the only safe way of sanitizing SQL strings. And, anyway, you should be using some sort of Relational Mapper to hide low-level database operations (aka <em>the boring stuff</em>).</p>
<p>Read more on <a href="http://php.net/manual/en/book.pdo.php" rel="nofollow">PDO</a>, <a href="http://www.php.net/manual/en/pdo.prepared-statements.php" rel="nofollow">prepared statements</a> and <a href="http://www.php.net/manual/en/pdostatement.bindvalue.php" rel="nofollow">bound values</a> on php.net.</p>
http://stackoverflow.com/questions/1706899/how-to-build-a-in-site-search-engine-with-php/1707009#17070090Answer by Michał Słaby for How to build a in-site search engine with php? Michał Słaby2009-11-10T10:38:25Z2009-11-10T10:38:25Z<p><strong>You can cheat a little bit the way the much-hated Experts-Exchange web site does.</strong> They are for-profit programmer's Q&A site much like StackOverflow. In order to see answers you have to pay, but sometimes the answers come up in Google search results. It is rather clear that E-E present different page for web crawlers and different for humans. You could use the same trick, then add Google Custom Search to your site. Users who are logged in would then see the results, otherwise they'd be bounced to login screen.</p>
http://stackoverflow.com/questions/1670797/convert-date-to-unixtime-php/1670807#16708074Answer by Michał Słaby for convert date to unixtime phpMichał Słaby2009-11-03T23:22:02Z2009-11-03T23:36:50Z<p><a href="http://ie.php.net/manual/en/function.mktime.php" rel="nofollow">mktime()</a> - Get Unix timestamp for a date</p>
<pre><code>echo mktime(23, 24, 0, 11, 3, 2009);
1257290640
</code></pre>
<p>To handle AM/PM just add 12 to hours if PM.</p>
<pre><code>mktime($isAM ? $hrs : ($hrs + 12), $mins, $secs, $m, $d, $y);
</code></pre>
<p>Alternatively you could use strtotime():</p>
<p><a href="http://ie.php.net/strtotime" rel="nofollow">strtotime()</a> - Parse about any English textual datetime description into a Unix timestamp</p>
<pre><code>echo strtotime("2009-11-03 11:24:00PM");
1257290640
</code></pre>
http://stackoverflow.com/questions/363038/whats-the-best-to-way-to-manage-a-singleton/363146#3631461Answer by Michał Słaby for What's the best to way to manage a singleton?Michał Słaby2008-12-12T15:52:12Z2009-10-30T09:49:12Z<p>I don't know much about PEAR::Log, but why not create another singleton that wraps/simplifies logging.</p>
<pre><code>class Logger {
private static $log;
private function __construct() { }
public static function init(Log $log) {
self::$log = $log;
}
public static function get() {
return self::$log;
}
}
</code></pre>
<p>Once you initialize <code>Logger</code> with <code>Log</code> instance you can access it via <code>Logger::get</code>. Since dereference is possible in PHP you can then do</p>
<pre><code>Logger::get()->doSomething($foo, $bar);
</code></pre>
http://stackoverflow.com/questions/1580378/pluginactionlinks-not-working-in-wordpress-2-80plugin_action_links not working in WordPress 2.8+Michał Słaby2009-10-16T20:58:14Z2009-10-26T20:31:21Z
<p>I developed a plugin with Settings link that was working fine in WordPress 2.7. Version 2.8 brings some additional security features that cause Settings link displaying message: You do not have sufficient permissions to access this page.</p>
<p>This is the API hook I use to create link:</p>
<pre><code>function folksr_plugin_action($links, $file) {
if (strstr($file, 'folksr/folksr.php')) {
$fl = "<a href=\"options-general.php?page=folksr/settings.php\">Settings</a>";
return array_merge(array($fl), $links);
}
return $links;
}
add_filter('plugin_action_links', 'folksr_plugin_action', 10, 2);
</code></pre>
<p>Full source code available at <a href="http://wordpress.org/extend/plugins/folksr/" rel="nofollow">plugin page</a>.</p>
<p>Settings screen does not contain any additional logic, just a couple of options and HTML echoed to the screen.</p>
<p>Suprisingly enough, Codex does not return anything for search phrase "plugin_action_links". Can you provide example or point me to working code for Settings link in Plugins menu?</p>
http://stackoverflow.com/questions/1580378/pluginactionlinks-not-working-in-wordpress-2-8/1627166#16271660Answer by Michał Słaby for plugin_action_links not working in WordPress 2.8+Michał Słaby2009-10-26T20:31:21Z2009-10-26T20:31:21Z<p>I found the solution to my own problem by analyzing sources of some random plugins. I must say - what an unpleasurable experience that was! But hey, here's the solution.</p>
<p>It turns out that in order to build Settings link, it needs to be registered first. The following code is a stub that does the trick:</p>
<pre><code>class MyPlugin {
public function __construct() {
add_filter('plugin_action_links', array($this, 'renderPluginMenu'), 10, 2);
add_action('admin_menu', array($this, 'setupConfigScreen'));
}
public function renderPluginMenu() {
$thisFile = basename(__FILE__);
if (basename($file) == $thisFile) {
$l = '<a href="' . admin_url("options-general.php?page=MyPlugin.php") . '">Settings</a>';
array_unshift($links, $l);
}
return $links;
}
public function setupConfigScreen() {
if (function_exists('add_options_page')) {
add_options_page('MyPlugin settings', 'MyPlugin', 8, basename(__FILE__), array($this, 'renderConfigScreen'));
}
}
public function renderConfigScreen() {
include dirname(__FILE__) . '/MyPluginSettings.php';
}
}
</code></pre>
http://stackoverflow.com/questions/1623311/restrict-access-to-images-on-my-website-except-through-my-own-htmls/1623325#16233252Answer by Michał Słaby for Restrict access to images on my website except through my own htmlsMichał Słaby2009-10-26T06:13:28Z2009-10-26T06:13:28Z<p>You are right considering option #3. Use service script that would validate user and readfile() an image. Be sure to set correct Content-Type HTTP header via header() function prior to serving an image. For better isolation images should be put above web root directory, or protected by well written .htaccess rules - there is definitely a way of protecting files and/or directories this way.</p>
http://stackoverflow.com/questions/1274858/what-would-be-a-suitable-way-to-log-changes-within-a-database/1274992#12749920Answer by Michał Słaby for What would be a suitable way to log changes within a databaseMichał Słaby2009-08-13T22:32:33Z2009-08-13T22:32:33Z<p>In small to medium size project I use the following set of rules:</p>
<ol>
<li>All code is stored under Revision Control System (i.e. Subversion)</li>
<li>There is a directory for SQL patches in source code (i.e. <code>patches/</code>)</li>
<li>All files in this directory start with serial number followed by short description (i.e. <code>086_added_login_unique_constraint.sql</code>)</li>
<li>All changes to DB schema must be recorded as separate files. No file can be changed after it's checked in to version control system. All bugs must be fixed by issuing another patch. It is important to stick closely to this rule.</li>
<li>Small script remembers serial number of last executed patch in local environment and runs subsequent patches when needed.</li>
</ol>
<p>This way you can guarantee, that you can recreate your DB schema easily without the need of importing whole data dump. Creating such patches is no brainer. Just run command in console/UI/web frontend and copy-paste it into patch if successful. Then just add it to repo and commit changes.</p>
<p>This approach scales reasonably well. Worked for PHP/PostgreSQL project consisting of 1300+ classes and 200+ tables/views.</p>
http://stackoverflow.com/questions/1174979/returning-a-php-array-from-a-php-soapserver/1175440#11754401Answer by Michał Słaby for Returning a PHP Array from a PHP SoapServerMichał Słaby2009-07-24T02:00:25Z2009-07-24T10:11:00Z<p>I used <a href="http://www.jool.nl/new/1,webservice%5Fhelper.html" rel="nofollow">this WSDL generator</a> to create description file.</p>
<p>Returning array of strings is something what my web service does, here's part of WSDL:</p>
<pre><code><wsdl:types>
<xsd:schema targetNamespace="http://schema.example.com">
<xsd:complexType name="stringArray">
<xsd:complexContent>
<xsd:restriction base="SOAP-ENC:Array">
<xsd:attribute ref="SOAP-ENC:arrayType" wsdl:arrayType="xsd:string[]" />
</xsd:restriction>
</xsd:complexContent>
</xsd:complexType>
</xsd:schema>
</wsdl:types>
<message name="notifyRequest">
<part name="parameters" type="xsd:string" />
</message>
<message name="notifyResponse">
<part name="notifyReturn" type="tns:stringArray" />
</message>
</code></pre>
<p>Then API function <code>notify</code> is defined:</p>
<pre><code><wsdl:operation name="notify">
<wsdl:input message="tns:notifyRequest" />
<wsdl:output message="tns:notifyResponse" />
</wsdl:operation>
</code></pre>
http://stackoverflow.com/questions/1172622/passing-a-string-by-reference-to-a-function-would-speed-things-up-php/1172642#11726420Answer by Michał Słaby for passing a string by reference to a function would speed things up? (php)Michał Słaby2009-07-23T15:35:55Z2009-07-23T15:43:55Z<blockquote>
<p>[...] so little time optimizations count.</p>
</blockquote>
<p><strong>No, they don't.</strong></p>
<p>The only true optimisation is the one that helps YOU read and/or write code faster. You should not sacrifice simplicity or readibility for performance - it will slow you down in long run.</p>
<p>Passing things by reference can be especially misleading. You may run into weird problems later, when some var will change mysteriously. You modify function input, which is not the way things normally work. Every time you do thing the unusual way you have to remember about them. Your memory and attention is limited though. Computer's is not. Don't overoptimise.</p>
<blockquote>
<p>Debugging is twice as hard as writing the code in the first place. Therefore, if you write the code as cleverly as possible, you are, by definition, not smart enough to debug it. --<em>Brian W. Kernighan</em></p>
</blockquote>
<p><strong>UPDATE</strong></p>
<p>In this case your whole function <code>escapeCSV</code> is slightly pointless. You should use <a href="http://ie.php.net/manual/en/function.fputcsv.php" rel="nofollow"><code>fputcsv</code></a>, which is core PHP library written in C, thus is by far faster and memory efficient.</p>
http://stackoverflow.com/questions/1164345/compiling-php-5-1-6-with-pdo-mysql/1164546#11645460Answer by Michał Słaby for Compiling PHP 5.1.6 with PDO MySQLMichał Słaby2009-07-22T11:05:51Z2009-07-22T11:05:51Z<p>No need to recompile whole PHP. Just compile PDO_MYSQL module alone. Use <code>pecl</code> to install it:</p>
<pre><code>pecl install PDO_MYSQL
</code></pre>
<p>For that you will need <code>phpize</code> installed. On Debian machines it is provided by package called <code>php5-dev</code>. Afterwards just add it to your <code>php.ini</code> and restart Apache.</p>
<p>If you are on Debian/Ubuntu system PDO_MYSQL is provided in package called <code>php5-mysql</code></p>
http://stackoverflow.com/questions/1156414/what-can-change-the-includepath-between-php-ini-and-a-php-file/1156442#11564423Answer by Michał Słaby for What can change the include_path between php.ini and a PHP file.Michał Słaby2009-07-20T23:06:20Z2009-07-20T23:06:20Z<p>There are several reasons why you are getting there weird results.</p>
<ul>
<li>include_path overridden somewhere in your php code. Check your code whether it contains <code>set_include_path()</code> call. With this function you can customise include path. If you want to retain current path just concatenate string <code>. PATH_SEPARATOR . get_include_path()</code></li>
<li>include_path overridden in <code>.htaccess</code> file. Check if there are any <code>php_value</code> or <code>php_flag</code> directives adding dodgy paths</li>
<li>non-standard configuration file in php interpreter. It is very unlikely, however possible, that your php process has been started with custom <code>php.ini</code> file passed. Check your web server setup and/or php distribution to see what is the expected location of <code>php.ini</code>. Maybe you are looking at wrong one.</li>
</ul>
http://stackoverflow.com/questions/1130385/delete-command-issue-in-php/1130509#11305091Answer by Michał Słaby for Delete command Issue in PHPMichał Słaby2009-07-15T10:04:05Z2009-07-15T10:04:05Z<p>This will make the function to understand array as well as single integer:</p>
<pre><code>function deleteUsers($u) {
$condition = is_array($u)
? "member_id IN (" . implode(',', $u) . ")"
: "member_id = " . (int)$u;
$res = mysql_query("DELETE FROM `members` WHERE $condition");
return $res ? true : false;
}
</code></pre>
<p>Remember that your parameters are not properly escaped and <strong>cannot be trusted</strong>. To learn more on escaping SQL and preventing injection attacks read about <a href="http://ie.php.net/pdo.prepared-statements" rel="nofollow">Prepared Statements</a>.</p>
http://stackoverflow.com/questions/1069999/grouping-radio-buttons-in-zend-framework3Grouping radio buttons in Zend FrameworkMichał Słaby2009-07-01T16:05:44Z2009-07-09T01:11:28Z
<p>I want to present radio buttons in logical products groups:</p>
<pre><code>Broadband products:
(*) 2 Mbit
( ) 4 Mbit
Voice products:
( ) Standard
( ) Total
Bundles:
( ) 4 Mbit + Standard
( ) 4 Mbit + Total
</code></pre>
<p>All radio buttons have the same <code>name</code> attribute - you get the idea. It seems that Zend Framework 1.8 does not support grouping radio buttons this way. Is there any solution to this?</p>
<p><strong>Update</strong>. Just to clarify, resulting code should look somewhat this way:</p>
<pre><code>Broadband products: <br/>
<input type="radio" name="product" value="1"/> 2 Mbit <br/>
<input type="radio" name="product" value="2"/> 4 Mbit <br/>
Voice products: <br/>
<input type="radio" name="product" value="3"/> Standard <br/>
<input type="radio" name="product" value="4"/> Total <br/>
Bundels: <br/>
<input type="radio" name="product" value="5"/> 4 Mbit + Standard <br/>
<input type="radio" name="product" value="6"/> 4 Mbit + Total <br/>
</code></pre>
<p>Nevermind the exact formatting code. Only form elements matter.</p>
http://stackoverflow.com/questions/1069499/convert-if-else-to-ternary/1069540#106954024Answer by Michał Słaby for Convert If Else to TernaryMichał Słaby2009-07-01T14:43:58Z2009-07-01T15:06:53Z<p>Ternary operator does not appear to be appropriate in your situation.
Why don't you use simple <strong>mapping</strong>?</p>
<pre><code>$map = array(
1521 => array('Home', 'b-value.gif', 'Best for Value'),
1595 => array('Home', 'b-dload.gif', 'Best for Downloads'),
1522 => array('Business', 'b-value.gif', 'Best for Value'),
// and so on
);
if (array_key_exists($idd, $map)) {
$item = $map[$idd];
echo "{$item[0]} <br/> <img src=\"{$item[1]}\"/> <br/> {$item[2]}";
}
</code></pre>
<p>Alternatively, you can pull the map from file or database.</p>
http://stackoverflow.com/questions/996661/is-there-a-way-to-be-notified-by-the-dom-when-an-element-is-removed/996834#9968340Answer by Michał Słaby for Is there a way to be notified by the DOM when an element is removed?Michał Słaby2009-06-15T15:41:52Z2009-06-15T15:51:40Z<p>I'm not massively strong in Javscript, but quickly mocked up the following code and it worked in Firefox. You may be lucky to get it working in other browsers.</p>
<pre><code><ul id="main">
<li id="e1">Item 1</li>
<li id="e2">Item 2</li>
</ul>
<script type="text/javascript">
var main = document.getElementById('main');
main.origRemoveChild = main.removeChild;
main.removeChild = function(child) {
alert('Removing element ' + child.tagName + ' with id=' + child.id);
this.origRemoveChild(child);
}
var e1 = document.getElementById('e1');
main.removeChild(e1);
</script>
</code></pre>
<p>Since you updated your question I have another solution here:</p>
<pre><code>removeFromDOM(e) {
for (var i = 0; i < e.childNodes.length; ++i) {
var child = e.childNodes[i];
removeFromDOM(child);
if (typeof child.onremove == 'function') {
child.onremove();
}
e.removeChild(child);
}
}
</code></pre>
<p>This will recursively delete every nested node. Before deleting it will try to execute <code>onremove</code> method is present. Hope that helps.</p>
http://stackoverflow.com/questions/968797/problems-with-parent-inheritance-in-php/969073#9690731Answer by Michał Słaby for Problems with parent / inheritance in PHPMichał Słaby2009-06-09T09:30:46Z2009-06-09T09:30:46Z<p>Steven, let me draw your attention to other things, that are incorrect in your sample despite being syntactically correct. The major issue here is responsibility separation: Data Access Layer should only act as a general purpose data retrieving/storing utility class. Any additional logic should be moved outside this class.</p>
<ol>
<li><p><strong>Database connection handling should not be part of DAL.</strong> Ideal solution is to pass the db object in constructor, so the DAL operates on the connection configured somewhere else. This is called Dependency Injection and is generally regarded a good thing.</p></li>
<li><p><strong>Method <code>getAllCountries</code> is way too specific for general purpose library.</strong> Should be replaced with <code>getAll</code> returning all records from current table. Table name should be passed in constructor or defined in subclass, so that every table has its corresponding DAL object.</p></li>
<li><p>*Method <code>getCountryListBox</code> generates some HTML output, which is not part of responsibility of DAL library. <strong>DAL should only return raw data.</strong></p></li>
</ol>
<p>It is worth keeping things separated, so you can reuse them in the future. Adding too many problem specific extension blurs the responsibility of a class. Main objectives of a class should be very narrow-minded, so classes can specialise in doing different things. Cooperation between several highly specialised classes should be the way of delivering complex functionality.</p>
http://stackoverflow.com/questions/951373/when-is-eval-evil-in-php/951868#9518687Answer by Michał Słaby for when is eval evil in php?Michał Słaby2009-06-04T17:08:24Z2009-06-04T17:08:24Z<p><strong>I would be cautious in calling eval() pure evil.</strong> Dynamic evaluation is a powerful tool and can sometimes be a life saver. With eval() one can work around shortcommings of PHP (see below).</p>
<p>The main problems with eval() are:</p>
<ul>
<li><strong>Potential unsafe input.</strong> Passing an untrusted parameter is a way to fail. It is often not a trivial task to make sure that a parameter (or part of it) is fully trusted.</li>
<li><strong>Trickyness.</strong> Using eval() makes code clever, therefore more difficult to follow. To quote Brian Kernighan "<em>Debugging is twice as hard as writing the code in the first place. Therefore, if you write the code as cleverly as possible, you are, by definition, not smart enough to debug it</em>"</li>
</ul>
<p>The main problem with actual use of eval() is only one:</p>
<ul>
<li>inexperienced developers who use it without enough consideration.</li>
</ul>
<p>As mentioned before eval() can help you do things that are impossible in pure PHP. My favourite trick involving dynamic evaluation enables static calls on variable classes. Since <code>$foo::bar()</code> is illegal in PHP, below solution works around that limitation.</p>
<pre><code>$className = 'Foo';
eval('$result = ' . $className . '::bar()');
echo $result;
</code></pre>
<p>As a rule of thumb I tend to follow this:</p>
<ol>
<li>Sometimes eval is the only/the right solution.</li>
<li>For most cases one should try something else.</li>
<li>If unsure, goto 2.</li>
<li>Else, <strong>be very, very careful.</strong></li>
</ol>
http://stackoverflow.com/questions/949641/how-to-assign-a-member-function-to-an-array-and-call-it/950690#9506900Answer by Michał Słaby for how to assign a member function to an array and call it?Michał Słaby2009-06-04T13:44:00Z2009-06-04T13:44:00Z<p>There can be several possible solutions to this problem. You have Command and Factory patterns presented in other replies. This one illustrates how to use <a href="http://dofactory.com/Patterns/PatternVisitor.aspx" rel="nofollow">Visitor</a> + <a href="http://dofactory.com/Patterns/PatternCommand.aspx" rel="nofollow">Command</a> pattern cooperation.</p>
<pre><code>class Name {
protected $jobs = array();
public function addJob(IJob $j) {
$this->jobs[] = $j;
}
public function do() {
foreach ($this->jobs as $j) {
$j->run($this);
}
}
}
interface IJob {
public function run(Name $invoker);
}
class WashDishes implements IJob {
public function run(Name $invoker) {
echo get_class($invoker) . ' washes dishes<br/>';
}
}
class DoShopping implements IJob {
public function run(Name $invoker) {
echo get_class($invoker) . ' does shopping<br/>';
}
}
$n = new Name();
$n->addJob(new WashDishes());
$n->addJob(new DoShopping());
$n->do();
</code></pre>
<p>Output:</p>
<pre><code>Name washes dishes
Name does shopping
</code></pre>
<p>A class implementing <code>IJob</code> interface is a command that can be passed and stored for later execution. The way <code>Name</code> object invokes jobs in collection (passing <code>$this</code> reference) is typical for Visitor pattern (this way job object has access its caller - <code>Name</code> object). However, true Visitor pattern is not possible in PHP due to lack of native support for explicit method overriding.</p>
http://stackoverflow.com/questions/163092/setting-default-values-conditional-assignment/163123#1631233Answer by Michał Słaby for Setting default values (conditional assignment)Michał Słaby2008-10-02T15:48:21Z2009-06-03T13:31:12Z<pre><code>isset($x) or $x = 'default';
</code></pre>
http://stackoverflow.com/questions/612761/what-is-call-cc10What is call/cc?Michał Słaby2009-03-04T22:30:32Z2009-06-03T00:36:18Z
<p>I've tried several times to grasp the concept of <a href="http://en.wikipedia.org/wiki/Continuation" rel="nofollow">continuations</a> and <a href="http://en.wikipedia.org/wiki/Call-with-current-continuation" rel="nofollow">call/cc</a>. Every single attempt was a failure. Can somebody please explain me these concepts, ideally with more realistic examples than these on Wikipedia or in other SO posts.</p>
<p>I have background in web programming and OOP. I also understand 6502 assembly and had a minor randez-vous with Erlang. However still, I can't wrap my head around call/cc.</p>
http://stackoverflow.com/questions/922411/maintaining-configuration-differences-between-dev-and-live-environments-during-de/922481#9224810Answer by Michał Słaby for maintaining configuration differences between dev and live environments during deployment from SVNMichał Słaby2009-05-28T18:32:19Z2009-05-28T18:32:19Z<p>I deal with this problem by adding configuration file to <strong>Subversion ignore list</strong>. It was already addressed here on Stackoverflow: <a href="http://stackoverflow.com/questions/149485/how-to-store-configuration-parameters-in-svn/149590#149590">see question #149485</a></p>
<p>Basically, I only keep <code>setup.default.php</code> in SVN, and in every installation I manually copy it to <code>setup.php</code> which is on ignore list. This prevents the file to be checked back in to the repo. There are rarely changes to this file and can be handled as the requirement occurs.</p>
http://stackoverflow.com/questions/862056/updation-of-table-through-php-mysql/862538#8625381Answer by Michał Słaby for updation of table through php mysqlMichał Słaby2009-05-14T10:05:54Z2009-05-14T10:18:58Z<p>Why not just redirect to <code>submessage.php</code> rather than inlining it? Redirecting also prevents duplicate db operations when user refreshed the page. Just replace <code>include</code> statement with:</p>
<pre><code>header('Location: submessage.php?id=' . $pid);
die();
</code></pre>
<p>Also, before you deploy your application: <strong>DO NOT EVER PUT USER INPUT DIRECTLY IN SQL QUERY</strong>. You should used bound parameters instead. Otherwise, you could just as well publicly advertise your database admin password. Read more on PDO and prepared statements at <a href="http://ie.php.net/pdo" rel="nofollow">http://ie.php.net/pdo</a></p>
<p>Here's how I would do it:</p>
<pre><code>$pdo = new PDO(....); // some configuration parameters needed
$sql = "
UPDATE listing SET
catid=:catid, title=:title, summary=:summary,
content=:content, author=:author, keyword=:keyword
WHERE pid=:pid
";
$stmt = $pdo->prepare($sql);
$stmt->bindValue('catid', $_POST['catid']);
$stmt->bindValue('title', $_POST['title']);
$stmt->bindValue('summary', $_POST['summary']);
$stmt->bindValue('content', $_POST['content']);
$stmt->bindValue('author', $_POST['author']);
$stmt->bindValue('keyword', $_POST['keyword']);
$stmt->bindValue('pid', $pid = $_GET['id']);
$stmt->execute();
header('Location: submessage.php?id=' . $pid);
die();
</code></pre>
<p>Or in fact, I would use some ORM solution to make it look more like that:</p>
<pre><code>$listing = Listing::getById($pid = $_GET['id']);
$listing->populate($_POST);
$listing->save();
header('Location: submessage.php?id=' . $pid);
die();
</code></pre>
http://stackoverflow.com/questions/852664/where-is-the-best-place-to-put-a-model-in-zend-framework/852683#8526832Answer by Michał Słaby for Where is the best place to put a model in Zend Framework?Michał Słaby2009-05-12T13:08:09Z2009-05-12T13:52:33Z<p>Check out this document outilinig several typical directory layouts:
<a href="http://framework.zend.com/wiki/display/ZFDEV/Choosing%2BYour%2BApplication%27s%2BDirectory%2BLayout" rel="nofollow">Choosing Your Application's Directory Layout</a></p>
<p>My setup looks like this:</p>
<pre><code>app/
controllers/
forms/
lib/
models/
views/
config.ini
lib/
sql/
var/
web/
css/
img/
js/
.htaccess
index.php
</code></pre>
<p>I use Zend Autoloader to automatically include model classes. The very top of my <code>index.php</code> file is:</p>
<pre><code>$paths = array(
'/usr/share/php/ZendFramework/library',
'../app/models',
'../app/lib',
'../app/forms',
'../app/models',
'../lib',
get_include_path()
);
set_include_path(implode(PATH_SEPARATOR, $paths));
// bootstrap
require 'Zend/Loader.php';
Zend_Loader::registerAutoload();
</code></pre>
<p>Works well with Zend Framework 1.7 as well as 1.8.</p>
http://stackoverflow.com/questions/852763/internet-explorer-equivalent-for-loading-a-text-file-in-javascript/852795#8527950Answer by Michał Słaby for Internet explorer equivalent for loading a text file in javascriptMichał Słaby2009-05-12T13:28:26Z2009-05-12T13:28:26Z<pre><code>if (window.XMLHttpRequest) {
var client = new XMLHttpRequest();
} else if(window.ActiveXObject) {
var client = new ActiveXObject('Microsoft.XMLHTTP');
} else {
alert('Your browser does not support XMLHttpRequest object');
}
if (typeof client.overrideMimeType != 'undefined') {
client.overrideMimeType('text/xml');
}
</code></pre>
http://stackoverflow.com/questions/737454/overwriten-this-variable-problem-or-how-to-call-a-member-function/737494#7374940Answer by Michał Słaby for Overwriten "this" variable problem or how to call a member function?Michał Słaby2009-04-10T12:32:37Z2009-04-10T12:43:48Z<p>It is the famous Javascript idiom you need to use in <code>initElements</code> function:</p>
<pre><code>var that = this;
</code></pre>
<p>Later in your handler just refer to <code>that</code> instead of <code>this</code>:</p>
<pre><code>var MyClass = Class.create({
initElements: function(sumEl) {
this.sumEl = sumEl;
var that = this;
sumEl.keyup(this.updateSumHandler);
},
updateSumHandler: function(event) {
that.updateSum();
},
updateSum: function() {
// does something here
}
});
</code></pre>
<p>It was covered in great detail in <a href="http://www.kryogenix.org/code/browser/secrets-of-javascript-closures/" rel="nofollow">talk by Stuart Langridge</a> on <em>Javascript closures</em> at Fronteers 2008 conference.</p>
http://stackoverflow.com/questions/652157/can-a-class-extend-both-a-class-and-implement-an-interface/652175#6521750Answer by Michał Słaby for Can a class extend both a class and implement an InterfaceMichał Słaby2009-03-16T21:14:56Z2009-03-16T21:20:03Z<p>Yes it can. You just need to retain the correct order.</p>
<pre><code>class database extends mysqli implements databaseInterface { ... }
</code></pre>
<p>Moreover, a class can implement more than one interface. Just separate 'em with commas.</p>
<p>However, I feel obliged to warn you that <strong>extending mysqli class is incredibly bad idea</strong>. Inheritance per se is probably the most overrated and misused concept in object oriented programming.</p>
<p>Instead I'd advise doing db-related stuff the mysqli way (or PDO way).</p>
<p>Plus, a minor thing, but naming conventions do matter. Your class <code>database</code> seems more general then <code>mysqli</code>, therefore it suggests that the latter inherits from <code>database</code> and not the way around.</p>
http://stackoverflow.com/questions/640870/how-do-i-properly-format-this-json-object-in-php/640894#6408940Answer by Michał Słaby for How do I properly format this json object in PHPMichał Słaby2009-03-12T23:34:46Z2009-03-12T23:34:46Z<p>Hey, associative arrays and objects are being treat equally in Javascript. Thus, PHP structure</p>
<pre><code>$cars['toyota'] = array("camry", "etc");
</code></pre>
<p>would be equivalent to this in JSON:</p>
<pre><code>var cars = { "toyota": [ "camry", "etc" ] };
</code></pre>
<p>You can easily convert PHP structure to JSON one with <a href="http://ie2.php.net/json%5Fencode" rel="nofollow">json_encode</a> function.
See <a href="http://json.org" rel="nofollow">json.org</a> for JSON format details.</p>
http://stackoverflow.com/questions/630714/smarty-the-best-choice/631084#631084Comment by Michał Słaby on Smarty, the best choice?Michał Słaby2009-11-25T21:25:23Z2009-11-25T21:25:23ZCory, indeed curly braces are not the most fortunate default choice. But you can easily change it in Smarty config. I for instance tend to use {{ and }} symbols. Apart from that the syntax is actually quite readable.http://stackoverflow.com/questions/1761972/will-this-regular-expression-s-prevent-sql-injection-if-no-how-to-get-aComment by Michał Słaby on Will this regular expression ^[^\s]+$ prevent SQL injection? if No how to get around the restriction?Michał Słaby2009-11-19T09:52:06Z2009-11-19T09:52:06ZUse the right tool for the job. Regular expressions are not the right tool for sanitizing SQL. Bound parameters are.http://stackoverflow.com/questions/1706899/how-to-build-a-in-site-search-engine-with-php/1707009#1707009Comment by Michał Słaby on How to build a in-site search engine with php? Michał Słaby2009-11-10T11:08:46Z2009-11-10T11:08:46ZIf that requires some special agreement - it's probably a no go then.http://stackoverflow.com/questions/1580378/pluginactionlinks-not-working-in-wordpress-2-8/1583214#1583214Comment by Michał Słaby on plugin_action_links not working in WordPress 2.8+Michał Słaby2009-10-21T22:13:33Z2009-10-21T22:13:33ZAdding admin_url didn't help. I suspect it could have something to the fact that my settings screen is in separate file.http://stackoverflow.com/questions/1434042/php-object-to-stringComment by Michał Słaby on php Object to StringMichał Słaby2009-09-16T20:44:45Z2009-09-16T20:44:45ZTry replacing $info in str_replace with $info->__toString(). This may help if you use PHP version <5.2.http://stackoverflow.com/questions/1172622/passing-a-string-by-reference-to-a-function-would-speed-things-up-phpComment by Michał Słaby on passing a string by reference to a function would speed things up? (php)Michał Słaby2009-07-23T16:07:49Z2009-07-23T16:07:49ZHere is the preffered solution: <a href="http://ie.php.net/manual/en/function.fputcsv.php" rel="nofollow">ie.php.net/manual/en/function.fputcsv.php</a>http://stackoverflow.com/questions/1172622/passing-a-string-by-reference-to-a-function-would-speed-things-up-php/1172642#1172642Comment by Michał Słaby on passing a string by reference to a function would speed things up? (php)Michał Słaby2009-07-23T15:45:15Z2009-07-23T15:45:15ZNot in this case. You're looking for microsecond optimisations. This is just poitless.http://stackoverflow.com/questions/1163473/requireonce-or-die-not-working/1163743#1163743Comment by Michał Słaby on require_once () or die() not workingMichał Słaby2009-07-22T09:28:28Z2009-07-22T09:28:28ZBrilliant answer. It needs to be stressed that require_once is not a function. It's a unary operator (or language construct, if you prefer), so is echo, new, include, etc.http://stackoverflow.com/questions/1130940/deleting-all-files-of-a-directory-over-a-given-file-size-eachComment by Michał Słaby on Deleting all files of a directory over a given file size eachMichał Słaby2009-07-15T12:11:12Z2009-07-15T12:11:12ZWhy don't you just run "find /path/to/dir -type f -size +1024k" as a shell command or via system() call?http://stackoverflow.com/questions/1126217/is-it-possible-to-have-a-peer-to-peer-communication-using-nothing-but-phpComment by Michał Słaby on Is it possible to have a peer to peer communication using nothing but PHPMichał Słaby2009-07-15T10:13:38Z2009-07-15T10:13:38ZWhy not just use Opera Unite file sharing? <a href="http://unite.opera.com/service/132/" rel="nofollow">unite.opera.com/service/132</a>http://stackoverflow.com/questions/1069999/grouping-radio-buttons-in-zend-frameworkComment by Michał Słaby on Grouping radio buttons in Zend FrameworkMichał Słaby2009-07-07T08:46:16Z2009-07-07T08:46:16ZYes, I do use Zend_Form.http://stackoverflow.com/questions/1073709/releasing-companys-code-on-free-software-licenceComment by Michał Słaby on Releasing company's code on free software licenceMichał Słaby2009-07-02T11:22:02Z2009-07-02T11:22:02ZThere is a great book on running FLOSS project available at <a href="http://producingoss.com/" rel="nofollow">producingoss.com</a>http://stackoverflow.com/questions/951373/when-is-eval-evil-in-php/951868#951868Comment by Michał Słaby on when is eval evil in php?Michał Słaby2009-06-05T11:51:49Z2009-06-05T11:51:49ZInteresting. Never thought about this one.http://stackoverflow.com/questions/951373/when-is-eval-evil-in-php/951868#951868Comment by Michał Słaby on when is eval evil in php?Michał Słaby2009-06-05T08:40:18Z2009-06-05T08:40:18Z@rojoca: Can you give us example how to do it without eval() in PHP 5.2, please?http://stackoverflow.com/questions/630714/smarty-the-best-choiceComment by Michał Słaby on Smarty, the best choice?Michał Słaby2009-06-04T17:38:21Z2009-06-04T17:38:21Z@vartec Smarty vs MVC is a false choice. Smarty works perfectly as rendering engine for View part of MVC. Zend+Smarty - I love this duo.