User enobrev - Stack Overflowmost recent 30 from stackoverflow.com2009-12-21T14:50:55Zhttp://stackoverflow.com/feeds/user/14651http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1452381/need-help-with-associative-arrays/1452654#14526540Answer by enobrev for Need help with associative arraysenobrev2009-09-21T02:44:59Z2009-09-21T02:44:59Z<p>There's no functional difference between an ajax call and a regular call from a browser.</p>
<p>So, to answer...</p>
<pre><code>$formData = getFormData();
echo $formData['name'];
</code></pre>
http://stackoverflow.com/questions/151587/how-do-i-disable-tortoise-bzr4How do I disable Tortoise BZR?enobrev2008-09-30T02:55:18Z2009-02-28T12:21:53Z
<p>I'm a huge fan of bzr and I'm glad they're working on tortoise for it, but currently it's WAY too slow to be useful. The icons are almost always incorrect and when I load a directory in explorer with a lot of branches it locks up my entire system for anywhere from 10 seconds to 2 minutes. I look forward to trying it again in the future, but for now I'd like to disable it.</p>
<p>Unfortunately I don't see it in add/remove programs and I can't find a way to disable it in the bazaar config directory. When I right click the icon in the task panel (by the clock) and choose "Exit Program" it just restarts moments later. I don't see it in the Services panel either. Is there any way to disable it?</p>
<p>I'm running Windows XP on the system in question.</p>
http://stackoverflow.com/questions/585431/php-file-upload-problem/585631#5856311Answer by enobrev for PHP file upload problemenobrev2009-02-25T11:23:06Z2009-02-25T11:32:17Z<p>My first thought was filesize issues. In the php.ini, if the post_max_size or upload_max_filesize are too small, you can end up with similar results - where the file just seems to disappear. You would get an error in the apache logs (which you mention you've no access to).</p>
<p>In those cases, the $_FILES array would simply be empty - as if the file never arrived. Since your responses to <a href="http://stackoverflow.com/questions/585431/php-file-upload-problem/585446#585446">Gumbo</a> and <a href="http://stackoverflow.com/questions/585431/php-file-upload-problem/585449#585449">James Hall</a> show that php is reporting a proper upload, I'm led to wonder about the processing you mention.</p>
<p>If, during the process, your memory gets maxed or the script runs too long, the script may be dying out before it gets a chance to move it. You'll want to check these:</p>
<p>memory_limit</p>
<p>max_execution_time</p>
<p>max_input_time</p>
<p>Otherwise, without the apache logs, I'd say it might be a good idea to start outputting to a log file of your own throughout your file processing script. Try a file_exists on the tmp file, see what info you can get from the file (permissions, etc).</p>
<p>Unfortunately PHP doesn't get involved until the upload is finished, which means you won't get much info during - only after the fact. You best option might be to talk to the hosting company and get access to the logs - even if for a short time. In my experience, I've rarely had trouble getting ot the logs - or at least getting a tech to check the logs for me while I run tests (in the case where a shared server doesn't split their logs - seems ridiculous, but I've seen it before).</p>
<p>Edit: I realize you can't change those php settings, but you might want to see what they are in order to find out if they're potential problems for your script. For instance, a low memory limit will kill your processor script if it's less than the size of the uploaded file.</p>
http://stackoverflow.com/questions/536814/javascript-insert-ellipsis-into-html-tag-if-content-too-wide/537049#5370491Answer by enobrev for JavaScript: Insert ellipsis (...) into HTML tag if content too wideenobrev2009-02-11T14:34:14Z2009-02-11T14:34:14Z<p>I'd done something similar for a client recently. Here's a version of what I did for them (example tested in all latest browser versions on Win Vista). Not perfect all around the board, but could be tweaked pretty easily.</p>
<p>Demo: <a href="http://enobrev.info/ellipsis/" rel="nofollow">http://enobrev.info/ellipsis/</a></p>
<p>Code:</p>
<pre><code><html>
<head>
<script src="http://www.google.com/jsapi"></script>
<script>
google.load("jquery", "1.2.6");
google.setOnLoadCallback(function() {
$('.longtext').each(function() {
if ($(this).attr('scrollWidth') > $(this).width()) {
$more = $('<b class="more">&hellip;</b>');
// add it to the dom first, so it will have dimensions
$(this).append($more);
// now set the position
$more.css({
top: '-' + $(this).height() + 'px',
left: ($(this).attr('offsetWidth') - $more.attr('offsetWidth')) + 'px'
});
}
});
});
</script>
<style>
.longtext {
height: 20px;
width: 300px;
overflow: hidden;
white-space: nowrap;
border: 1px solid #f00;
}
.more {
z-index: 10;
position: relative;
display: block;
background-color: #fff;
width: 18px;
padding: 0 2px;
}
</style>
</head>
<body>
<p class="longtext">This is some really long text. This is some really long text. This is some really long text. This is some really long text.</p>
</body>
</html>
</code></pre>
http://stackoverflow.com/questions/410558/why-are-exceptions-said-to-be-so-bad-for-input-validation12Why are Exceptions said to be so bad for Input Validation?enobrev2009-01-04T06:25:32Z2009-01-27T17:49:31Z
<p>I understand that "Exceptions are for exceptional cases" [a], but besides just being repeated <a href="http://stackoverflow.com/questions/88541/business-objects-validation-and-exceptions#88917">over</a> and <a href="http://stackoverflow.com/questions/77127/when-to-throw-an-exception#77227">over</a> again, I've never found an actual reason for this fact.</p>
<p>Being that they halt execution, it makes sense that you wouldn't want them for plain conditional logic, but why not input validation?</p>
<p>Say you were to loop through a group of inputs and catch each exception to group them together for user notification... I continually see that this is somehow "wrong" because users enter incorrect input all the time, but that point seems to be <a href="http://stackoverflow.com/questions/77127/when-to-throw-an-exception#77164">based on semantics</a>. </p>
<p>The input is Not what was expected and hence is exceptional. Throwing an exception allows me to define exactly what was wrong like StringValueTooLong or or IntegerValueTooLow or InvalidDateValue or whatever. Why is this considered wrong?</p>
<p>Alternatives to throwing an exception would be to either return (and eventually collect) an error code or far worse an error string. Then I would either show those error strings directly, or parse the error codes and then show corresponding error messages to the user. Wouldn't a exception be considered a malleable error code? Why create a separate table of error codes and messages, when these could be generalized with the exception functionality already built into my language?</p>
<p>Also, I <a href="http://www.martinfowler.com/eaaDev/Notification.html" rel="nofollow">found this article by Martin Fowler</a> as to how to handle such things - the Notification pattern. I'm not sure how I see this as being anything other than Exceptions that don't halt execution. </p>
<p>a: Everywhere I've read anything about Exceptions.</p>
<p>--- Edit ---</p>
<p>Many great points have been made. I've commented on most and +'d the good points, but I'm not yet completely convinced.</p>
<p>I don't mean to advocate Exceptions as the proper means to resolve Input Validation, but I would like to find good reasons why the practice is considered so evil when it seems most alternate solutions are just Exceptions in disguise.</p>
http://stackoverflow.com/questions/478002/php-arrays-remove-duplicates-time-complexity/478383#4783832Answer by enobrev for PHP Arrays - Remove duplicates ( Time complexity )enobrev2009-01-25T21:55:58Z2009-01-25T22:30:18Z<p><a href="http://stackoverflow.com/users/20178/gabriel1836">Gabriel's</a> <a href="http://stackoverflow.com/questions/478002/php-arrays-remove-duplicates-time-complexity#478032">answer</a> has some great points about why your friend's method beats yours. Intrigued by the conversation following <a href="http://stackoverflow.com/users/48015/christoph">Christoph's</a> <a href="http://stackoverflow.com/questions/478002/php-arrays-remove-duplicates-time-complexity#478034">answer</a>, I decided to run some tests of my own. </p>
<p>Also, I tried this with differing lengths of random strings and although the results were different, the order was the same. I used 6 chars in this example for brevity.</p>
<p>Notice that array_unique5 actually has the same keys as native, 2 and 3, but just outputs in a different order.</p>
<p>Results...</p>
<pre><code>Testing 10000 array items of data over 1000 iterations:
array_unique6: 1.7561039924622 array ( 9998 => 'b', 9992 => 'a', 9994 => 'f', 9997 => 'e', 9993 => 'c', 9999 => 'd', )
array_unique4: 1.8798060417175 array ( 0 => 'b', 1 => 'a', 2 => 'f', 3 => 'e', 4 => 'c', 5 => 'd', )
array_unique5: 7.5023629665375 array ( 10 => 'd', 0 => 'b', 3 => 'e', 2 => 'f', 9 => 'c', 1 => 'a', )
array_unique3: 11.356487989426 array ( 0 => 'b', 1 => 'a', 2 => 'f', 3 => 'e', 9 => 'c', 10 => 'd', )
array_unique: 22.535032987595 array ( 0 => 'b', 1 => 'a', 2 => 'f', 3 => 'e', 9 => 'c', 10 => 'd', )
array_unique2: 62.107122898102 array ( 0 => 'b', 1 => 'a', 2 => 'f', 3 => 'e', 9 => 'c', 10 => 'd', )
array_unique7: 71.557286024094 array ( 0 => 'b', 1 => 'a', 2 => 'f', 3 => 'e', 9 => 'c', 10 => 'd', )
</code></pre>
<p>And The Code...</p>
<pre><code>set_time_limit(0);
define('HASH_TIMES', 1000);
header('Content-Type: text/plain');
$aInput = array();
for ($i = 0; $i < 10000; $i++) {
array_push($aInput, chr(rand(97, 102)));
}
function array_unique2($a) {
$n = array();
foreach ($a as $k=>$v)
if (!in_array($v,$n))
$n[$k]=$v;
return $n;
}
function array_unique3($aOriginal) {
$aUnique = array();
foreach ($aOriginal as $sKey => $sValue) {
if (!isset($aUnique[$sValue])) {
$aUnique[$sValue] = $sKey;
}
}
return array_flip($aUnique);
}
function array_unique4($aOriginal) {
return array_keys(array_flip($aOriginal));
}
function array_unique5($aOriginal) {
return array_flip(array_flip(array_reverse($aOriginal, true)));
}
function array_unique6($aOriginal) {
return array_flip(array_flip($aOriginal));
}
function array_unique7($A) {
$keys = Array();
$values = Array();
foreach ($A as $k => $v) {
if (!array_key_exists($v, $values)) {
$keys[] = $k;
$values[$v] = $v;
}
}
return array_combine($keys, $values);
}
function showResults($sMethod, $fTime, $aInput) {
echo $sMethod . ":\t" . $fTime . "\t" . implode("\t", array_map('trim', explode("\n", var_export(call_user_func($sMethod, $aInput), 1)))) . "\n";
}
echo 'Testing ' . (count($aInput)) . ' array items of data over ' . HASH_TIMES . " iterations:\n";
$fTime = microtime(1);
for ($i = 0; $i < HASH_TIMES; $i++) array_unique($aInput);
$aResults['array_unique'] = microtime(1) - $fTime;
$fTime = microtime(1);
for ($i = 0; $i < HASH_TIMES; $i++) array_unique2($aInput);
$aResults['array_unique2'] = microtime(1) - $fTime;
$fTime = microtime(1);
for ($i = 0; $i < HASH_TIMES; $i++) array_unique3($aInput);
$aResults['array_unique3'] = microtime(1) - $fTime;
$fTime = microtime(1);
for ($i = 0; $i < HASH_TIMES; $i++) array_unique4($aInput);
$aResults['array_unique4'] = microtime(1) - $fTime;
$fTime = microtime(1);
for ($i = 0; $i < HASH_TIMES; $i++) array_unique5($aInput);
$aResults['array_unique5'] = micrhttp://stackoverflow.com/questions/109066/how-do-i-use-flashvars-with-actionscript-3-0/132047#1320471Answer by enobrev for How do I use FlashVars with ActionScript 3.0?enobrev2008-09-25T08:01:42Z2009-01-25T20:16:17Z<p>Not sure why <a href="http://blogs.adobe.com/pdehaan/2006/07/using_flashvars_with_actionscr.html" rel="nofollow">his example</a> calls LoaderInfo. The <a href="http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/display/DisplayObject.html" rel="nofollow">DisplayObject</a> class has its own (readonly) <a href="http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/display/DisplayObject.html#loaderInfo" rel="nofollow">loaderinfo</a> property. As long as your main class extends a DisplayObject, you can call the property directly</p>
<pre><code>package {
import flash.display.Sprite;
public class Main extends Sprite {
public function Main() {
var test1:String = '';
if (this.loaderInfo.parameters.test1 !== undefined) {
test1 = this.loaderInfo.parameters.test1;
}
}
}
}
</code></pre>
<p>From the doc:</p>
<blockquote>
<p>Returns a LoaderInfo object containing
information about loading the file to
which this display object belongs. The
loaderInfo property is defined only
for the root display object of a SWF
file or for a loaded Bitmap (not for a
Bitmap that is drawn with
ActionScript). To find the loaderInfo
object associated with the SWF file
that contains a display object named
myDisplayObject, use
myDisplayObject.root.loaderInfo.</p>
</blockquote>
http://stackoverflow.com/questions/433493/why-do-multiple-spaces-in-an-html-file-show-up-as-single-spaces-in-the-browser/433512#4335125Answer by enobrev for Why do multiple spaces in an HTML file show up as single spaces in the browser?enobrev2009-01-11T19:45:24Z2009-01-11T19:45:24Z<p>Not only is it in <a href="http://stackoverflow.com/questions/433493/why-do-multiple-spaces-in-an-html-file-show-up-as-single-spaces-in-the-browser#433499">the</a> <a href="http://stackoverflow.com/questions/433493/why-do-multiple-spaces-in-an-html-file-show-up-as-single-spaces-in-the-browser#433501">specification</a>, but there is some sense to it. If spaces weren't compacted, you would have to put all your html on a single line. so something like this:</p>
<pre><code><div>
<h1>Title</h1>
<p>
This is some text
<a href="#">Read More</a>
</p>
</div>
</code></pre>
<p>Would have some strange alignment with spaces all over the place. The only way to get it right would be to compact that code, which would be difficult to maintain.</p>
http://stackoverflow.com/questions/417840/how-to-right-align-a-p-tag/417848#41784817Answer by enobrev for How to right align a <p> tag?enobrev2009-01-06T19:49:37Z2009-01-06T20:08:03Z<p>CSS:</p>
<pre><code>p {
text-align: right;
}
</code></pre>
<p>INLINE:</p>
<pre><code><p style="text-align: right">Some Text</p>
</code></pre>
<p>jQuery:</p>
<pre><code>$('p').css('text-align', 'right');
</code></pre>
<p>Javascript:</p>
<pre><code>var aElements = document.getElementsByTagName('p');
for (var i = 0; i < aElements.length; i++) {
aElements[i].style.textAlign = 'right';
}
</code></pre>
http://stackoverflow.com/questions/415629/most-efficient-way-to-find-elements-in-jquery/415745#4157450Answer by enobrev for Most efficient way to find elements in jQueryenobrev2009-01-06T07:47:22Z2009-01-06T07:47:22Z<p>The first example goes a LOT faster when used with a context. The second example goes faster as well, but not by much. I expanded your example to compare with a context:</p>
<p><a href="http://jsbin.com/uluwe" rel="nofollow">http://jsbin.com/uluwe</a></p>
http://stackoverflow.com/questions/415602/set-value-of-textarea-in-jquery/415609#41560916Answer by enobrev for Set value of textarea in jqueryenobrev2009-01-06T06:10:17Z2009-01-06T06:10:17Z<p>Have you tried val?</p>
<pre><code>$("textarea#ExampleMessage").val(result.exampleMessage);
</code></pre>
http://stackoverflow.com/questions/346980/what-code-igniter-authentication-library-is-best/365218#3652183Answer by enobrev for What Code Igniter authentication library is best?enobrev2008-12-13T13:33:10Z2008-12-13T13:33:10Z<p>I tried Redux. Wasn't a fan. In the end, I ended up making a CI wrapper for <a href="http://framework.zend.com/manual/en/zend.auth.html" rel="nofollow">Zend_Auth</a>, which works like a charm.</p>
http://stackoverflow.com/questions/330206/i-want-to-optimally-check-defined-constants-in-php/330271#3302715Answer by enobrev for I Want To Optimally Check Defined Constants in PHPenobrev2008-12-01T08:19:46Z2008-12-01T08:19:46Z<p>As long as you don't mind using quotes on your constants, you can do this:</p>
<pre><code>function C($constant) {
return defined($constant) ? constant($constant) : 'Undefined';
}
echo C('MESSAGE') . '<br />';
define('MESSAGE', 'test');
echo C('MESSAGE') . '<br />';
</code></pre>
<p>Output:</p>
<blockquote>
<p>Undefined</p>
<p>test</p>
</blockquote>
<p>Otherwise, there's no way around it without catching the notice thrown by using an undefined constant.</p>
http://stackoverflow.com/questions/313478/how-best-to-make-a-link-submit-a-form/313731#3137311Answer by enobrev for How best to make a link submit a form.enobrev2008-11-24T09:16:32Z2008-11-24T09:16:32Z<p>Similar <a href="http://stackoverflow.com/questions/313478/how-best-to-make-a-link-submit-a-form#313624">solution</a> to <a href="http://stackoverflow.com/users/35364/hasen-j">hasen j</a>, but using a recursive function to traverse the document.</p>
<pre><code>function findParentForm(element) {
if (element.parentNode.tagName.toLowerCase() == 'html') {
throw('No Parent Form Found');
} else if (element.parentNode.tagName.toLowerCase() == 'form') {
return element.parentNode;
} else {
return findParentForm(element.parentNode);
}
}
</code></pre>
<p>And the form, of course...</p>
<pre><code><form>
<ul>
<li>
<p>
The link could be <span>embedded <a href="" onclick="findParentForm(this).submit(); return false;">at any level</a></span>
in the form, so "this.parentNode.parentNode..." is no good. :(
</p>
</li>
</ul>
</form>
</code></pre>
http://stackoverflow.com/questions/310820/how-to-check-if-two-objects-are-of-the-same-type-in-actionscript/310879#3108793Answer by enobrev for How to check if two objects are of the same type in Actionscript?enobrev2008-11-22T04:45:22Z2008-11-22T04:45:22Z<p>You'll want to use the Object.prototype.constructor.</p>
<p>From the <a href="http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/Object.html#constructor" rel="nofollow">documentation</a>:</p>
<pre><code> dynamic class A {}
trace(A.prototype.constructor); // [class A]
trace(A.prototype.constructor == A); // true
var myA:A = new A();
trace(myA.constructor == A); // true
</code></pre>
<p>(Conveniently, this is also how to check types in javascript, which is what originally led me to this in the docs)</p>
<p>So, to test this out before I posted here, I tried it in an app I have, in a class called Player. Since the prototype property is static, you can't call it using "this" but you can just skip the scope identifier and it works:</p>
<pre><code>public function checkType():void {
trace(prototype.constructor, prototype.constructor == Player);
// shows [class Player] true
}
</code></pre>
http://stackoverflow.com/questions/290535/best-way-to-find-next-form-input-element-in-jquery/292215#2922150Answer by enobrev for Best way to find "next" form input element in jQuery?enobrev2008-11-15T05:56:37Z2008-11-15T13:28:31Z<p>I came up with a function that does the job without explicitly defining indexes:</p>
<pre><code>function nextInput(form, id) {
var aInputs = $('#' + form).find(':input[type!=hidden]');
for (var i in aInputs) {
if ($(aInputs[i]).attr('id') == id) {
if (typeof(aInputs[parseInt(i) + 1]) != 'undefined') {
return aInputs[parseInt(i) + 1];
}
}
}
}
</code></pre>
<p>And here's a working example. The form tags are for consistency. All you really need is a common parent and could even just use the body tag as the parent (with a slight modification to the function).</p>
<p>Paste this into a file and open with firefox / firebug and you'll see it returns the correct element for all your examples:</p>
<pre><code><html>
<head>
<script src="http://www.google.com/jsapi"></script>
<script>
function nextInput(form, id) {
var aInputs = $('#' + form).find(':input[type!=hidden]');
for (var i in aInputs) {
if ($(aInputs[i]).attr('id') == id) {
if (typeof(aInputs[parseInt(i) + 1]) != 'undefined') {
return aInputs[parseInt(i) + 1];
}
}
}
}
google.load("jquery", "1.2.6");
google.setOnLoadCallback(function() {
console.log(nextInput('myform1', 'this1'));
console.log(nextInput('myform2', 'this2'));
console.log(nextInput('myform3', 'this3'));
console.log(nextInput('myform4', 'this4'));
});
</script>
</head>
<body>
<form id="myform1">
<ul>
<li><input type="text" /></li>
<li><input id="this1" type="text" /></li>
</ul>
<ul>
<li><input id="next1" type="text" /></li>
</ul>
</form>
<form id="myform2">
<ul>
<li><input type="text" /></li>
<li><input id="this2" type="text" /></li>
</ul>
<ul>
<li><input id="next2" type="text" /></li>
</ul>
</form>
<form id="myform3">
<input id="this3" type="text" />
<input id="next3" type="text" />
</form>
<form id="myform4">
<div>
<input id="this4" type="text" />
<input type="hidden" />
<div>
<table>
<tr><td></td><td><input id="next4" type="text" /></td></tr>
</table>
</div>
<button></button>
</div>
</form>
</body>
</html>
</code></pre>
http://stackoverflow.com/questions/254200/access-parent-property-in-jquery-callback/254589#2545890Answer by enobrev for Access parent property in jQuery callback enobrev2008-10-31T19:11:15Z2008-10-31T19:11:15Z<p>Although <a href="http://stackoverflow.com/questions/254200/access-parent-property-in-jquery-callback#254233">closures</a> are <a href="http://stackoverflow.com/questions/254200/access-parent-property-in-jquery-callback#254237">preferred</a>, you could also use jquery <code>bind</code> to pass an object along:</p>
<pre><code>var base = function() {
var controls = {};
return {
init: function(c) {
this.controls = c
},
foo: function(args) {
this.init(args.controls);
$(this.controls.DropDown).bind('change', {controls: this.controls}, function(event) {
$(event.data.controls.PlaceHolder).toggle();
});
}
}
};
</code></pre>
http://stackoverflow.com/questions/253689/switching-div-background-image-with-jquery/253722#2537221Answer by enobrev for Switching DIV Background Image With jQueryenobrev2008-10-31T14:33:57Z2008-10-31T14:39:01Z<p>This works on all current browsers on WinXP. Basically just checking what the current backgrond image is. If it's image1, show image2, otherwise show image1.</p>
<p>The jsapi stuff just loads jQuery from the Google CDN (easier for testing a misc file on the desktop).</p>
<p>The replace is for cross-browser compatibility (opera and ie add quotes to the url and firefox, chrome and safari remove quotes).</p>
<pre><code><html>
<head>
<script src="http://www.google.com/jsapi"></script>
<script>
google.load("jquery", "1.2.6");
google.setOnLoadCallback(function() {
var original_image = 'url(http://stackoverflow.com/Content/img/wmd/link.png)';
var second_image = 'url(http://stackoverflow.com/Content/img/wmd/code.png)';
$('.mydiv').click(function() {
if ($(this).css('background-image').replace(/"/g, '') == original_image) {
$(this).css('background-image', second_image);
} else {
$(this).css('background-image', original_image);
}
return false;
});
});
</script>
<style>
.mydiv {
background-image: url('http://stackoverflow.com/Content/img/wmd/link.png');
width: 100px;
height: 100px;
}
</style>
</head>
<body>
<div class="mydiv">&nbsp;</div>
</body>
</html>
</code></pre>
http://stackoverflow.com/questions/251592/how-does-php-do-recursive-function-calls/251869#2518694Answer by enobrev for How does PHP do recursive function calls?enobrev2008-10-30T21:42:40Z2008-10-30T22:50:14Z<p>I'm not sure I understand the nesting in your example, as the example doesn't demonstrate a purpose behind nesting. Your example input could very easily be</p>
<pre><code>'This is my test {@a} {@b} string.'
</code></pre>
<p>And using arrays in str_replace would handle this very simply and quickly.</p>
<pre><code>$aVars = array('{@a}' => 'hello', '{@b}' => 'world');
$sString = 'This is my test {@a} {@b} string.';
echo str_replace(array_keys($aVars), array_values($aVars), $sString);
</code></pre>
<p>Which gives us</p>
<blockquote>
<p>This is my test hello world string.</p>
</blockquote>
<p>Now, a recursive function for this isn't too difficult, though I'm not sure I understand how useful it would be. Here's a working example:</p>
<pre><code>function template($sText, $aVars) {
if (preg_match_all('/({@([^{}]+)})/',
$sText, $aMatches, PREG_SET_ORDER)) {
foreach($aMatches as $aMatch) {
echo '<pre>' . print_r($aMatches, 1) . '</pre>';
if (array_key_exists($aMatch[2], $aVars)) {
// replace the guy inside
$sText = str_replace($aMatch[1], $aVars[$aMatch[2]], $sText);
// now run through the text again since we have new variables
$sText = template($sText, $aVars);
}
}
}
return $sText;
}
</code></pre>
<p>That print_r will show you what the matches look like so you can follow the function through its paces. Now lets try it out...</p>
<pre><code>$aVars = array('a' => 'hello', 'b' => 'world');
$sStringOne = 'This is my test {@a} {@b} string.';
$sStringTwo = 'This is my test {@a{@b}} string.';
echo template($sStringOne, $aVars) . '<br />';
</code></pre>
<p>First Result:</p>
<blockquote>
<p>This is my test hello world string.</p>
</blockquote>
<p>Now lets try String Two</p>
<pre><code>echo template($sStringTwo, $aVars) . '<br />';
</code></pre>
<p>Second Result:</p>
<blockquote>
<p>This is my test {@aworld} string.</p>
</blockquote>
<p>That may very well be what you're looking for. Obviously you would need an <code>aworld</code> variable for this to work recursively...</p>
<pre><code>$aVars = array('a' => '', 'b' => '2', 'a2' => 'hello world');
echo template($sStringTwo, $aVars) . '<br />';
</code></pre>
<p>And our result.</p>
<blockquote>
<p>This is my test hello world string.</p>
</blockquote>
<p>And just for some fun with the recursion...</p>
<pre><code>$aVars = array('a3' => 'hello world', 'b2' => '3', 'c1' => '2', 'd' => '1');
$sStringTre = 'This is my test {@a{@b{@c{@d}}}} string.';
echo template($sStringTre, $aVars) . '<br />';
</code></pre>
<blockquote>
<p>This is my test hello world string.</p>
</blockquote>
<p>Not sure if this is what you're asking for...</p>
http://stackoverflow.com/questions/238376/getting-the-first-item-out-of-a-for-loop/238753#2387531Answer by enobrev for Getting the first item out of a For loopenobrev2008-10-26T22:54:22Z2008-10-26T22:54:22Z<p>If you're using a plain <code>for</code> loop, I'd recommend just acting on the 1st item and then looping through the rest as <a href="http://stackoverflow.com/users/12950/tvanfosson">tvanfosson</a> <a href="http://stackoverflow.com/questions/238376/getting-the-first-item-out-of-a-for-loop#238392">said</a>. It's slightly faster and potentially easier to read...</p>
<pre><code>doSomethingWithFirst($list[0]);
for ($i = 1; $i < count($list); $i++) {
doSomethingWithTheRest($list[$i]);
}
</code></pre>
<p>I tend to use <code>foreach</code> over <code>for</code> to loop over arrays, in which case, I would use a "firstDone" var, like so:</p>
<pre><code>$bFirstTime = true;
foreach($list as $item) {
if ($bFirstTime) {
doSomethingWithFirst($item);
$bFirstTime = false;
} else {
doSomethingWithTheRest($item);
}
}
</code></pre>
http://stackoverflow.com/questions/238071/what-is-the-simplest-way-to-format-a-timestamp-from-sql-in-php/238171#2381715Answer by enobrev for What is the simplest way to format a timestamp from sql in php?enobrev2008-10-26T16:05:18Z2008-10-26T22:30:39Z<p>I tend to do the date formatting in SQL, like <a href="http://stackoverflow.com/users/11568/aron">Aron</a>'s <a href="http://stackoverflow.com/questions/238071/what-is-the-simplest-way-to-format-a-timestamp-from-sql-in-php#238077">answer</a>. Although for PHP dates, I prefer using the <a href="http://www.php.net/manual/en/function.date-create.php" rel="nofollow">DateTime</a> object (PHP5+) over <a href="http://www.php.net/manual/en/function.date.php" rel="nofollow">date</a>:</p>
<pre><code>$timestamp = new DateTime($row['my_timestamp']);
echo $timestamp->format('F j, Y') . '<br />';
echo $timestamp->format('F j, Y g:ia');
</code></pre>
http://stackoverflow.com/questions/133571/how-to-convert-multiple-br-tag-to-a-single-br-tag-in-php/133659#1336594Answer by enobrev for How to convert multiple <br/> tag to a single <br/> tag in phpenobrev2008-09-25T14:24:09Z2008-10-26T22:12:45Z<p>Mine is almost exactly the same as <a href="http://stackoverflow.com/questions/133571/how-to-convert-multiple-br-tag-to-a-single-br-tag-in-php#133600">levik</a>'s (+1), just accounting for some different br formatting:</p>
<pre><code>preg_replace('/(<br[^>]*>\s*){2,}/', '<br/>', $sInput);
</code></pre>
http://stackoverflow.com/questions/133686/what-is-the-best-way-to-profile-php-code/133702#1337024Answer by enobrev for What is the best way to profile PHP codeenobrev2008-09-25T14:30:04Z2008-10-26T21:59:26Z<p>take a look into <a href="http://www.xdebug.org/docs/profiler" rel="nofollow">xdebug</a>, which allows in-depth profiling. And <a href="http://devzone.zend.com/article/2899-Profiling-PHP-Applications-With-xdebug" rel="nofollow">here's an explanation</a> of how to use xdebug.</p>
<blockquote>
<p>Xdebug's Profiler is a powerful tool
that gives you the ability to analyze
your PHP code and determine
bottlenecks or generally see which
parts of your code are slow and could
use a speed boost. The profiler in
Xdebug 2 outputs profiling information
in the form of a cachegrind compatible
file.</p>
</blockquote>
<p>Kudos to <a href="http://stackoverflow.com/users/18077/schizoduckie">SchizoDuckie</a> for <a href="http://stackoverflow.com/questions/133686/what-is-the-best-way-to-profile-php-code#134305">mentioning</a> <a href="http://code.google.com/p/webgrind/" rel="nofollow">Webgrind</a>. This is the first I've heard of it. Very useful (+1).</p>
<p>Otherwise, you can use <a href="http://sourceforge.net/projects/kcachegrind/" rel="nofollow">kcachegrind</a> on linux or its lesser derivative <a href="http://sourceforge.net/projects/wincachegrind/" rel="nofollow">wincachegrind</a>. Both of those apps will read xdebug's profiler output files and summarize them for your viewing pleasure.</p>
http://stackoverflow.com/questions/161915/unequal-html-textbox-and-dropdown-width-with-xhtml-1-0-strict/169007#1690071Answer by enobrev for Unequal Html textbox and dropdown width with XHTML 1.0 strictenobrev2008-10-03T21:41:02Z2008-10-03T21:41:02Z<p>This seems to have something to do with the box model. More specifically, it seems to have something to do with the border. If you're using firebug, check out the layout tab...</p>
<p>The select shows a 2px border, 0 padding and a width of 996px and height of 18px.<br />
The input shows a 2px border, 1px 0 padding and a width of 1000px and height of 16px.</p>
<p>If you set the border to zero (and give them a background color), you can see they'll be the same size, which shows them both with a width of 1000px in the layout tab.</p>
<pre><code> .searchInput{
width: 1000px;
border: 0;
background-color: #CCC;
overflow: hidden;
}
</code></pre>
http://stackoverflow.com/questions/166944/calling-python-in-php/168678#1686780Answer by enobrev for Calling Python in PHPenobrev2008-10-03T20:13:22Z2008-10-03T20:13:22Z<p>There's also a PHP extension: <a href="http://www.csh.rit.edu/~jon/projects/pip/" rel="nofollow">Pip - Python in PHP</a>, which I've never tried but had it bookmarked for just such an occasion</p>
http://stackoverflow.com/questions/151587/how-do-i-disable-tortoise-bzr/168224#1682240Answer by enobrev for How do I disable Tortoise BZR?enobrev2008-10-03T18:28:57Z2008-10-03T18:28:57Z<p><a href="http://stackoverflow.com/questions/151587/how-do-i-disable-tortoise-bzr#151911">Jason's answer</a> seemed valid, so I spent some time looking for the py file. It's nowhere to be found. It seems when installing bzr via the setup it also installs tbzr binaries. I've looked through as many panels as I can find. Process Explorer (sysinternals), AutoRuns (sysinternals), Some Shell Extension browser, etc. I couldn't find a formal entry anywhere.</p>
<p>I found the registry entries, but I've no idea where they came from or how to "formally" get rid of them. I'm not in the mood to just start killing off registry entries as I actually have to get work done this week.</p>
<p>I'm just going to run the uninstall and then install the latest version (with TBZR unchecked). As far as I can tell that's the only way to resolve this.</p>
http://stackoverflow.com/questions/167752/how-can-you-display-typing-speed-using-javascript-or-the-jquery-library/167902#1679022Answer by enobrev for How can you display Typing Speed using Javascript or the jQuery library?enobrev2008-10-03T17:09:37Z2008-10-03T17:09:37Z<p>Here's a tested implementation,which seems ok, but I don't guarantee the math.</p>
<p>A Demo: <a href="http://enobrev.info/type_speed/" rel="nofollow">http://enobrev.info/type_speed/</a></p>
<p>And the code:</p>
<pre><code><?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Type Speed</title>
<script type="text/javascript" src="js/jquery-1.2.6.js"></script>
<style type="text/css">
form {
margin: 20px auto;
width: 500px;
}
#textariffic {
width: 400px;
height: 400px;
font-size: 12px;
font-family: monospace;
line-height: 15px;
}
</style>
<script type="text/javascript">
$(function() {
$('textarea')
.keyup(checkSpeed);
});
var iLastTime = 0;
var iTime = 0;
var iTotal = 0;
var iKeys = 0;
function checkSpeed() {
iTime = new Date().getTime();
if (iLastTime != 0) {
iKeys++;
iTotal += iTime - iLastTime;
iWords = $('textarea').val().split(/\s/).length;
$('#CPM').html(Math.round(iKeys / iTotal * 6000, 2));
$('#WPM').html(Math.round(iWords / iTotal * 6000, 2));
}
iLastTime = iTime;
}
</script>
</head>
<body>
<form id="tipper">
<textarea id="textariffic"></textarea>
<p>
<span class="label">CPM</span>
<span id="CPM">0</span>
</p>
<p>
<span class="label">WPM</span>
<span id="WPM">0</span>
</p>
</form>
</body>
</html>
</code></pre>
http://stackoverflow.com/questions/128342/display-div-at-cursor-position-in-textarea/163395#1633956Answer by enobrev for Display DIV at Cursor Position in Textareaenobrev2008-10-02T16:47:34Z2008-10-03T16:30:58Z<p>It's not perfect and it's most Definitely a hack, but I got it to work pretty well on WinXP IE, FF, Safari, Chrome and Opera.</p>
<p>As far as I can tell there's no way to directly find out the x/y of a cursor on any browser. The <a href="http://weblogs.asp.net/skillet/archive/2005/03/24/395838.aspx" rel="nofollow">IE method</a>, <a href="http://stackoverflow.com/questions/128342/display-div-at-cursor-position-in-textarea#128461">mentioned</a> by <a href="http://stackoverflow.com/users/21632/adam-bellaire">Adam Bellaire</a> is interesting, but unfortunately not cross-browser. I figured the next best thing would be to use the characters as a grid.</p>
<p>Unfortunately there's no font metric information built into any of the browsers, which means a monospace font is the only font type that's going to have a consistent measurement. Also, there's no reliable means of figuring out a font-width from the font-height. At first I'd tried using a percentage of the height, which worked great. Then I changed the font-size and everything went to hell. </p>
<p>I tried one method to figure out character width, which was to create a temporary textarea and keep adding characters until the scrollHeight (or scrollWidth) changed. It seems plausable, but about halfway down that road, I realized I could just use the cols attribute on the textarea and figured there are enough hacks in this ordeal to add another one. This means you can't set the width of the textarea via css. You HAVE to use the cols for this to work.</p>
<p>The next problem I ran into is that, even when you set the font via css, the browsers report the font differently. When you don't set a font, mozilla uses <code>monospace</code> by default, IE uses <code>Courier New</code>, Opera <code>"Courier New"</code> (with quotes), Safari, <code>'Lucida Grand'</code> (with single quotes). When you do set the font to <code>monospace</code>, mozilla and ie take what you give them, Safari comes out as <code>-webkit-monospace</code> and Opera stays with <code>"Courier New"</code>.</p>
<p>So now we initialize some vars. Make sure to set your line height in the css as well. Firefox reports the correct line height, but IE was reporting "normal" and I didn't bother with the other browsers. I just set the line height in my css and that resolved the difference. I haven't tested with using ems instead of pixels. Char height is just font size. Should probably pre-set that in your css as well.</p>
<p>Also, one more pre-setting before we start placing characters - which really had me scratching my head. For ie and mozilla, texarea chars are < cols, everything else is <= chars. So Chrome can fit 50 chars across, but mozilla and ie would break the last word off the line.</p>
<p>Now we're going to create an array of first-character positions for every line. We loop through every char in the textarea. If it's a newline, we add a new position to our line array. If it's a space, we try to figure out if the current "word" will fit on the line we're on or if it's going to get pushed to the next line. Punctuation counts as a part of the "word". I haven't tested with tabs, but there's a line there for adding 4 chars for a tab char.</p>
<p>Once we have an array of line positions, we loop through and try to find which line the cursor is on. We're using hte "End" of the selection as our cursor.</p>
<p>x = (cursor position - first character position of cursor line) * character width</p>
<p>y = (cursor line + 1 * line height) - scroll position</p>
<p>I'm using <a href="http://docs.jquery.com/Downloading_jQuery" rel="nofollow">jquery 1.2.6</a>, <a href="http://laboratorium.0xab.cd/jquery/fieldselection/0.1.0/test.html" rel="nofollow">jquery-fieldselection</a>, and <a href="http://plugins.jquery.com/project/dimensions" rel="nofollow">jquery-dimensions</a></p>
<p>The Demo: <a href="http://enobrev.info/cursor/" rel="nofollow">http://enobrev.info/chttp://stackoverflow.com/questions/161342/is-there-a-php-library-for-email-address-validation/167739#1677397Answer by enobrev for Is there a php library for email address validation?enobrev2008-10-03T16:26:32Z2008-10-03T16:26:32Z<p><a href="http://www.iamcal.com/" rel="nofollow">Cal Henderson</a> (of Flickr) wrote an <a href="http://www.iamcal.com/publish/articles/php/parsing_email" rel="nofollow">RFC822 compliant email address matcher</a>, with an explanation of the RFC and code utilizing the RFC to match email addresses. I've been using it for quite some time now with no complaints.</p>
<blockquote>
<p>RFC822 (published in 1982) defines,
amongst other things, the format for
internet text message (email)
addresses. You can find the RFC's by
googling - there's many many copies of
them online. They're a little terse
and weirdly formatted, but with a
little effort we can seewhat they're
getting at.</p>
</blockquote>
http://stackoverflow.com/questions/136782/format-mysql-datetime-with-php/137780#1377801Answer by enobrev for Format mysql datetime with phpenobrev2008-09-26T04:31:21Z2008-09-26T04:31:21Z<p>If using php5, you can also try</p>
<pre><code>$oDate = new DateTime($row->createdate);
$sDate = $oDate->format("m/d/y g:i A");
</code></pre>
http://stackoverflow.com/questions/652948/mysql-join-problemComment by enobrev on MySQL Join Problemenobrev2009-03-17T03:54:08Z2009-03-17T03:54:08Zyour output is confusing. if you want to "skip A1_id == 0", then the 1st line should not be a part of the query output.http://stackoverflow.com/questions/645788/php-notice-undefined-index-when-looping-array/645791#645791Comment by enobrev on PHP Notice: Undefined index when looping array...enobrev2009-03-14T12:12:46Z2009-03-14T12:12:46ZI personally prefer array_key_exists, but use isset specifically because it's (surprisingly) a LOT faster <a href="http://us.php.net/manual/en/function.array-key-exists.php#82867" rel="nofollow">us.php.net/manual/en/…</a>http://stackoverflow.com/questions/151587/how-do-i-disable-tortoise-bzr/542445#542445Comment by enobrev on How do I disable Tortoise BZR?enobrev2009-02-13T00:48:11Z2009-02-13T00:48:11Zany luck upon reboot?http://stackoverflow.com/questions/151587/how-do-i-disable-tortoise-bzr/511131#511131Comment by enobrev on How do I disable Tortoise BZR?enobrev2009-02-04T16:34:56Z2009-02-04T16:34:56ZDid it allow you to explicitly uninstall tortoise or did you have to uninstall all of BZR and then reinstall without it?http://stackoverflow.com/questions/510410/getting-table-metadata-in-mysql/510432#510432Comment by enobrev on Getting table metadata in MySQLenobrev2009-02-04T07:59:11Z2009-02-04T07:59:11Zyou can get the unique info from SHOW INDEX FROM table_namehttp://stackoverflow.com/questions/478002/php-arrays-remove-duplicates-time-complexity/478383#478383Comment by enobrev on PHP Arrays - Remove duplicates ( Time complexity )enobrev2009-02-01T05:40:55Z2009-02-01T05:40:55Z@joe_mucchiello, so you're saying this would no longer be wrong if I removed 3 of the methods? I think I understand your point, but that's why I explicitly showed the results and not only the timing.http://stackoverflow.com/questions/410558/why-are-exceptions-said-to-be-so-bad-for-input-validation/484445#484445Comment by enobrev on Why are Exceptions said to be so bad for Input Validation?enobrev2009-01-27T21:16:03Z2009-01-27T21:16:03ZI understand and agree with your point about putting all the validation in one place, but isn't an exception the same as "returning an error struct/object containing information about the error"?http://stackoverflow.com/questions/478002/php-arrays-remove-duplicates-time-complexity/478383#478383Comment by enobrev on PHP Arrays - Remove duplicates ( Time complexity )enobrev2009-01-26T21:42:20Z2009-01-26T21:42:20Z@joe_mucchiello, That was my point in showing the results. Some were faster and dropped keys, some were faster and kept the keys, just rearranged things - and in an associative array, the order on the items can be less important. And one of the "plain wrong" ones was your suggestion (flip, flip)http://stackoverflow.com/questions/478002/php-arrays-remove-duplicates-time-complexity/478034#478034Comment by enobrev on PHP Arrays - Remove duplicates ( Time complexity )enobrev2009-01-26T00:33:59Z2009-01-26T00:33:59Zheh, fan of the flip-flop as well.http://stackoverflow.com/questions/478002/php-arrays-remove-duplicates-time-complexity/478034#478034Comment by enobrev on PHP Arrays - Remove duplicates ( Time complexity )enobrev2009-01-25T23:42:27Z2009-01-25T23:42:27Z@Christoph, your new one is the same as array_unique3 in my results. That was my first attempt at speeding up the OP's friend's, but eventually found the array_flip method was best.http://stackoverflow.com/questions/478002/php-arrays-remove-duplicates-time-complexity/478383#478383Comment by enobrev on PHP Arrays - Remove duplicates ( Time complexity )enobrev2009-01-25T22:47:03Z2009-01-25T22:47:03Z@Christoph, i wish it were as it's more explicit and easier to read. The functional difference between the two is that isset returns false for NULL values. I've read the actual reason it's faster somewhere, though I can't find the link.http://stackoverflow.com/questions/478002/php-arrays-remove-duplicates-time-complexity/478038#478038Comment by enobrev on PHP Arrays - Remove duplicates ( Time complexity )enobrev2009-01-25T22:32:20Z2009-01-25T22:32:20Z@joe_mucchiello added your method to my posthttp://stackoverflow.com/questions/478002/php-arrays-remove-duplicates-time-complexity/478383#478383Comment by enobrev on PHP Arrays - Remove duplicates ( Time complexity )enobrev2009-01-25T22:30:46Z2009-01-25T22:30:46Z@Christoph addedhttp://stackoverflow.com/questions/478002/php-arrays-remove-duplicates-time-complexity/478383#478383Comment by enobrev on PHP Arrays - Remove duplicates ( Time complexity )enobrev2009-01-25T22:16:30Z2009-01-25T22:16:30Z@Christoph I'll add it. I doubt it though as array_key_exists is a lot slower than isset.http://stackoverflow.com/questions/478002/php-arrays-remove-duplicates-time-complexity/478383#478383Comment by enobrev on PHP Arrays - Remove duplicates ( Time complexity )enobrev2009-01-25T22:15:50Z2009-01-25T22:15:50ZThat is interesting. I got similar results as what I'd posted using your data.