User Greg - Stack Overflowmost recent 30 from stackoverflow.com2009-12-08T11:51:43Zhttp://stackoverflow.com/feeds/user/24181http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1860393/recursive-file-search-php/1860479#18604792Answer by Greg for Recursive File Search (PHP)Greg2009-12-07T14:58:27Z2009-12-07T14:58:27Z<p>You should create a filter:</p>
<pre><code>class JpegOnlyFilter extends RecursiveFilterIterator
{
public function __construct($iterator)
{
parent::__construct($iterator);
}
public function accept()
{
return $this->current()->isFile() && preg_match("/\.jpe?g$/ui", $this->getFilename());
}
public function __toString()
{
return $this->current()->getFilename();
}
}
$it = new RecursiveDirectoryIterator("L:\folder\folder\folder");
$it = new JpegOnlyFilter($it);
$it = new RecursiveIteratorIterator($it);
foreach ($it as $file)
...
</code></pre>
http://stackoverflow.com/questions/173400/php-arrays-a-good-way-to-check-if-an-array-is-associative-or-sequential/173479#17347927Answer by Greg for PHP Arrays: A good way to check if an array is associative or sequential?Greg2008-10-06T07:36:26Z2009-12-07T02:24:32Z<p>This will do it for you</p>
<pre><code><?php
function isAssoc($arr)
{
return array_keys($arr) !== range(0, count($arr) - 1);
}
var_dump(isAssoc(array('a', 'b', 'c'))); // false
var_dump(isAssoc(array("0" => 'a', "1" => 'b', "2" => 'c'))); // false
var_dump(isAssoc(array("1" => 'a', "0" => 'b', "2" => 'c'))); // true
var_dump(isAssoc(array("a" => 'a', "b" => 'b', "c" => 'c'))); // true
?>
</code></pre>
http://stackoverflow.com/questions/1847215/how-to-make-a-workeable-a-href-in-php/1847276#18472760Answer by Greg for How to make a workeable <a href.. in PHPGreg2009-12-04T14:26:44Z2009-12-04T14:26:44Z<p>You should be able to use a lookbehind assertion - <code>(?<=...)</code> then always add in the http:// in your link:</p>
<pre><code>$patterns = "!(((?<=http:/{2})[\w\.]{2,}[/\w\-\.\?\&\=\#]*)|(www\.[/\w\-\.\?\&\=\#]*)|([a-zA-Z0-9-\.]+(com|us|co.il)[^\s]*))!e";
return preg_replace($patterns, "'<a class=\"highlight boughtAt\" href=\"http://\\1\" title=\"\\1\" target=\"_blank\">'.(strlen('\\1')>=$chr_limit ? substr('\\1',0,$chr_limit).'$add':'\\1').'</a>'", $url);
</code></pre>
http://stackoverflow.com/questions/1846151/cookies-can-not-be-retrieved-using-php/1846165#18461652Answer by Greg for Cookies can not be retrieved using PHPGreg2009-12-04T10:40:55Z2009-12-04T10:40:55Z<p>Your <a href="http://php.net/setcookie" rel="nofollow"><code>setcookie()</code></a> call is wrong - you can't have a path in the domain part - it should be:</p>
<pre><code>setcookie('username', $username, strtotime('+1 months'), '/jp/', '.localdomain.com');
</code></pre>
http://stackoverflow.com/questions/1846086/why-does-ajax-call-for-json-data-trigger-the-error-callback-when-http-status-co/1846103#18461030Answer by Greg for Why does $.ajax call for json data trigger the error callback when http status code is "200 OK"?Greg2009-12-04T10:24:21Z2009-12-04T10:24:21Z<p>Does your callback return a page with <code>Content-type: application/json</code>? If not, that could well be the reason.</p>
http://stackoverflow.com/questions/1845938/how-can-we-use-this-and-option-selected/1845963#18459634Answer by Greg for How can we use $(this) and option selected Greg2009-12-04T09:54:48Z2009-12-04T09:54:48Z<p>You can use either</p>
<pre><code>$(':selected', this).text();
</code></pre>
<p>or</p>
<pre><code>$(this).find(':selected').text();
</code></pre>
http://stackoverflow.com/questions/1839339/php-insert-autoincrement-value-for-parent-child-tables-concurrency-problem/1839377#18393773Answer by Greg for Php - Insert Autoincrement Value - For Parent/Child Tables - Concurrency ProblemGreg2009-12-03T11:35:12Z2009-12-03T11:35:12Z<p>When you call <a href="http://php.net/mysql%5Finsert%5Fid" rel="nofollow"><code>mysql_insert_id()</code></a> it gets the last inserted id <em>for that connection</em>, so two PHP scripts won't interfere with each other.</p>
http://stackoverflow.com/questions/1838971/mysql-ifexpr1-expr2-expr3-but-i-dont-want-any-expr3-if-expr3-then-dont-outpu/1838983#18389832Answer by Greg for MYSQL IF(expr1,expr2,expr3) but I don’t want any expr3 (if expr3 then don’t output anything. Greg2009-12-03T10:17:31Z2009-12-03T10:17:31Z<p>Just use <code>WHERE rFormat IS NULL</code> instead of <code>IF</code>.</p>
http://stackoverflow.com/questions/1838794/php-image-creation-from-hex-values-in-database/1838813#18388133Answer by Greg for PHP image creation from hex values in database Greg2009-12-03T09:42:07Z2009-12-03T09:42:07Z<p>You just need to move <code> $x = 0;</code> to before the start of the loop.</p>
<p>There seem to be a few other things wrong, too</p>
<pre><code>$x = 0;
while($colors = mysql_fetch_array( $sql ))
{
$imgname = $x.".jpg";
$color = $colors['value'];
// Skip the whole lot if the colour is invalid
if (strlen($color) != 6)
continue;
// No need to create an array just to call list()
$r = hexdec($color[0].$color[1]);
$g = hexdec($color[2].$color[3]);
$b = hexdec($color[4].$color[5]);
// There's no need to header() if you're writing to a file
//header("Content-type: image/jpeg");
$image = imagecreate( 720, 576 );
$colour = imagecolorallocate($image, $r, $g, $b);
// You don't actually fill the image with the colour
imagefilledrectangle($image, 0, 0, 719, 575, $colour);
imagejpeg($image, $imgname);
imagedestroy($image);
$x++;
}
</code></pre>
http://stackoverflow.com/questions/1835485/how-do-you-debug-through-a-compressed-javascript-file/1835495#18354959Answer by Greg for How do you debug through a compressed javascript file?Greg2009-12-02T20:15:25Z2009-12-02T20:15:25Z<p>The simple answer is you don't debug through a compressed file - you use an uncompressed version for development.</p>
http://stackoverflow.com/questions/1835407/301-htaccess-redirect-rule/1835436#18354361Answer by Greg for 301 Htaccess Redirect Rule Greg2009-12-02T20:04:56Z2009-12-02T20:04:56Z<p>Like this:</p>
<pre><code>RewriteRule ^wordA/wordB/.*$ /new_word/$0 [R=301]
</code></pre>
http://stackoverflow.com/questions/1832276/getting-last-6-values-from-an-multidimensional-array/1832286#18322868Answer by Greg for Getting last 6 values from an multidimensional arrayGreg2009-12-02T11:16:53Z2009-12-02T11:16:53Z<p>You can use <a href="http://php.net/array%5Fslice" rel="nofollow"><code>array_slice()</code></a>:</p>
<pre><code>$stats = array_slice($stats, -6);
</code></pre>
<p>The reason your code isn't working is because</p>
<ol>
<li><a href="http://php.net/array%5Fshift" rel="nofollow"><code>array_shift()</code></a> removes from the front of the array - so you'd end up with the first 6 removed, which is not the same as getting the last 6 unless your array has 12 items...</li>
<li>array_shift edits the array in place and returns the item it removed</li>
</ol>
http://stackoverflow.com/questions/1832154/php-ternary-statement/1832166#18321662Answer by Greg for Php ternary statementGreg2009-12-02T10:54:59Z2009-12-02T10:54:59Z<p>Nice... It is just a regular ternary operator (well, 3 of them, along with some concatenation).</p>
<p>If you reformat it, it gets a bit clearer:</p>
<pre><code>$output = $output ? '<div class="' . $this->style_links . '">' . $output . '</div>' : '';
$min = $total ? (($page - 1) * $limit) + 1 : 0;
$max = (($page - 1) * $limit) > ($total - $limit) ? $total : ((($page - 1) * $limit) + $limit);
$output .= '<div class="' . $this->style_results . '">'
. sprintf($this->text, $min, $max, $total, $num_pages)
. '</div>';
return $output;
</code></pre>
http://stackoverflow.com/questions/1828935/php-curl-and-raw-headers/1828950#18289502Answer by Greg for PHP, curl, and raw headersGreg2009-12-01T21:09:53Z2009-12-01T21:09:53Z<p>You can use <a href="http://php.net/curl%5Fgetinfo" rel="nofollow">curl_getinfo</a>:</p>
<pre><code>$headers = curl_getinfo($c, CURLINFO_HEADER_OUT);
</code></pre>
http://stackoverflow.com/questions/1828760/php-regex-match-first-newline-after-x-characters-for-a-trimming-function/1828795#18287951Answer by Greg for PHP Regex match first newline after x characters for a trimming functionGreg2009-12-01T20:45:18Z2009-12-01T20:45:18Z<p>You can add the <code>s</code> (DOTALL) modifier to make <code>.</code> match newlines, then just make the second bit ungreedy. I've also made it match everything if the string is under 500 characters and anchored it to the start:</p>
<pre><code>preg_match('/^.{500}[^\n]+|^.{0,500}$/s', $output, $matches);
$output = $matches[0];
</code></pre>
http://stackoverflow.com/questions/1827965/is-putting-a-div-inside-a-anchor-ever-correct/1828030#18280301Answer by Greg for Is putting a div inside a anchor ever correct?Greg2009-12-01T18:37:19Z2009-12-01T18:37:19Z<p>You can't put <code><div></code> inside <code><a></code> - it's not valid (X)HTML.</p>
<p>Even though you style a span with display: block you still can't put block-level elements inside it: the (X)HTML still has to obey the (X)HTML DTD (whichever one you use), no matter how the CSS alters things.</p>
<p>The browser will probably display it as you want, but that doesn't make it right.</p>
http://stackoverflow.com/questions/1827971/php-converting-a-date-to-a-timestamp/1827987#18279877Answer by Greg for PHP Converting a date to a timestampGreg2009-12-01T18:30:05Z2009-12-01T18:30:05Z<p>Yes you can use <a href="http://php.net/strtotime" rel="nofollow"><code>strtotime()</code></a> for that</p>
<pre><code>$time = strtotime('9/7/2009');
echo $time; // 1252278000
</code></pre>
<p>This will assume a format of mm/dd/yyyy so don't try it with UK-style dd/mm/yyyy dates.</p>
<p>To go the other way, use <a href="http://php.net/date" rel="nofollow"><code>date()</code></a></p>
<pre><code>$date = date('n/j/Y', $time);
echo $date; // 9/7/2009
</code></pre>
http://stackoverflow.com/questions/1822280/only-execute-script-if-entered-email-is-from-a-specific-domain/1822336#18223361Answer by Greg for Only execute script if entered email is from a specific domainGreg2009-11-30T20:56:35Z2009-11-30T20:56:35Z<p>Your regular expression is a bit off (it will allow foo@secondgearsoftwaresecondgearsoftware.com) and can be simplified:</p>
<pre><code>$pattern = '/@((euro\.|asia\.)?secondgearsoftware|secondgearllc)\.com$/i';
</code></pre>
<p>I've made it case-insensitive and anchored it to the end of the string.</p>
<p>There doesn't seem to be a need to check what's before the "@" - you should have a proper validation routine for that if necessary, but it seems you just want to check if the email address belongs to one of these domains.</p>
http://stackoverflow.com/questions/1822263/multiple-forms-with-submit-enabled-via-checkbox/1822281#18222811Answer by Greg for Multiple Forms with Submit enabled via CheckboxGreg2009-11-30T20:45:25Z2009-11-30T20:45:25Z<p>something like this might be better:</p>
<pre><code>$(function() {
$("form").each(function() {
$("#Agreement", this).click(function() {
$('input:submit', this.form).attr("disabled", this.checked ? "" : "disabled");
});
});
});
</code></pre>
<p>It looks like you're re-using <code>id="Agreement"</code> within each form - you shouldn't do that.</p>
<p>You could even do this if you change id to class:</p>
<pre><code>$(function() {
$("form .Agreement").click(function() {
$('input:submit', this.form).attr("disabled", this.checked ? "" : "disabled");
});
});
</code></pre>
http://stackoverflow.com/questions/1821888/mysql-select-statement-with-chinese-and-japanese-characters-empty-result/1821920#18219202Answer by Greg for MySQL: SELECT statement with Chinese and Japanese characters (empty result?)Greg2009-11-30T19:35:50Z2009-11-30T19:35:50Z<p>Probably you need to set your connection to UTF-8 (assuming that's what you're using):</p>
<pre><code>mysql_query('SET NAMES "utf8"');
</code></pre>
http://stackoverflow.com/questions/1821882/javascript-help/1821892#18218922Answer by Greg for JavaScript HelpGreg2009-11-30T19:32:22Z2009-11-30T19:32:22Z<p>You can change the textarea like this:</p>
<pre><code>document.forms['myform'].elements['txtOutput'].value = myValue;
</code></pre>
<p>You should remove <code>name=txtOutput</code> from your button - you don't need it and it'll just make things difficult.</p>
http://stackoverflow.com/questions/1820129/when-and-why-is-xml-preferable-to-csv/1820168#18201682Answer by Greg for When and Why is XML preferable to CSV?Greg2009-11-30T14:34:01Z2009-11-30T14:34:01Z<p>In addition to the other answers, XML allows you to specify which character set the document is in.</p>
http://stackoverflow.com/questions/1813908/problem-with-transparent-margin/1813941#18139413Answer by Greg for Problem with transparent marginGreg2009-11-28T22:14:02Z2009-11-28T22:14:02Z<p>It's not a bug - it's called <a href="http://www.howtocreate.co.uk/tutorials/css/margincollapsing" rel="nofollow">margin collapsing</a>.</p>
<p>You could do with preventing the margins from touching - this is why adding padding or a border fixes it.</p>
http://stackoverflow.com/questions/1799384/how-can-i-sanitize-my-include-statements/1799416#179941612Answer by Greg for How can I sanitize my include statements?Greg2009-11-25T19:31:28Z2009-11-25T19:31:28Z<p>The safest way is to whitelist your pages:</p>
<pre><code>$page = 'home.php';
$allowedPages = array('one.php', 'two.php', ...);
if (!empty($_GET['page']) && in_array($_GET['page'], $allowedPages))
$page = $_GET['page'];
include $page;
</code></pre>
http://stackoverflow.com/questions/1799336/jquery-binding-and-unbinding-live-click-events/1799356#17993561Answer by Greg for jQuery: Binding and Unbinding Live Click EventsGreg2009-11-25T19:21:46Z2009-11-25T19:21:46Z<p>According to the <a href="http://docs.jquery.com/Events/live" rel="nofollow">documentation</a>:</p>
<blockquote>
<p>Live events currently only work when used against a selector.</p>
</blockquote>
<p><code>$(this)</code> is not a selector.</p>
http://stackoverflow.com/questions/1799284/how-can-i-break-exit-from-a-each-function-in-jquery/1799290#17992906Answer by Greg for How can i break/exit from a each() function in JQuery?Greg2009-11-25T19:12:15Z2009-11-25T19:12:15Z<p>According to the <a href="http://docs.jquery.com/Utilities/jQuery.each" rel="nofollow">documentation</a> you can simply <code>return false;</code> to break:</p>
<pre><code>$(xml).find("strengths").each(function() {
if (iWantToBreak)
return false;
});
</code></pre>
http://stackoverflow.com/questions/1799184/how-to-add-array-element-values-with-javascript/1799204#17992042Answer by Greg for how to add array element values with javascript ?Greg2009-11-25T18:58:42Z2009-11-25T18:58:42Z<p>A quick way is to use the unary plus operator to make them numeric:</p>
<pre><code>var TOTAL = 0;
for (var i = 0; i < 10; i++)
{
TOTAL += +myArray[i];
}
</code></pre>
http://stackoverflow.com/questions/1798995/jquery-ajax-images-preload/1799013#17990130Answer by Greg for jQuery ajax images preloadGreg2009-11-25T18:29:45Z2009-11-25T18:29:45Z<p>You need to create an array of elements:</p>
<pre><code>$(img1,img2).load(
</code></pre>
<p>should be</p>
<pre><code>$([img1, img2]).load(
</code></pre>
<p>It seems like overkill to do <code>$(img1).attr('src', 'source1');</code> when you could do <code>img1.src = 'source1';</code></p>
http://stackoverflow.com/questions/1796443/calculating-difference-between-username-and-email-in-javascript/1796465#17964653Answer by Greg for Calculating difference between username and email in javascriptGreg2009-11-25T11:52:21Z2009-11-25T11:52:21Z<p>Something like this?</p>
<pre><code>var charsRe = /[.+]/g; // Add your characters here
if (username.replace(charsRe, '') == email.split('@')[0].replace(charsRe, ''))
doError();
</code></pre>
http://stackoverflow.com/questions/1796288/whats-the-difference-between-delete-from-tablea-and-truncate-table-tablea-in-m/1796327#17963273Answer by Greg for What's the difference between delete from table_a and truncate table table_a in MySQL?Greg2009-11-25T11:23:52Z2009-11-25T11:23:52Z<ul>
<li>Truncate is much faster</li>
<li>Truncate resets autoincrements</li>
<li>Truncate is not transaction safe - it will autocommit</li>
<li>Delete doesn't have to remove all rows</li>
</ul>
<p><a href="http://dev.mysql.com/doc/refman/5.1/en/truncate-table.html" rel="nofollow">Truncate Documentation</a><br>
<a href="http://dev.mysql.com/doc/refman/5.1/en/delete.html" rel="nofollow">Delete Documentation</a></p>
http://stackoverflow.com/questions/1861353/add-key-value-to-an-associative-array-in-a-loopComment by Greg on add key => value to an associative array in a loop?Greg2009-12-07T17:06:54Z2009-12-07T17:06:54ZWhere does $tagcount come from?http://stackoverflow.com/questions/1856473/why-would-curl-ignore-curlopttimeoutms-but-honor-curlopttimeoutComment by Greg on Why would curl ignore CURLOPT_TIMEOUT_MS (but honor CURLOPT_TIMEOUT)?Greg2009-12-06T20:21:33Z2009-12-06T20:21:33ZCheck phpinfo() to make sure you have at least curl 7.16.2http://stackoverflow.com/questions/1846086/why-does-ajax-call-for-json-data-trigger-the-error-callback-when-http-status-co/1846103#1846103Comment by Greg on Why does $.ajax call for json data trigger the error callback when http status code is "200 OK"?Greg2009-12-04T14:22:31Z2009-12-04T14:22:31Zhmmm maybe that was the prototype library not jquery thenhttp://stackoverflow.com/questions/1838971/mysql-ifexpr1-expr2-expr3-but-i-dont-want-any-expr3-if-expr3-then-dont-outpu/1838983#1838983Comment by Greg on MYSQL IF(expr1,expr2,expr3) but I don’t want any expr3 (if expr3 then don’t output anything. Greg2009-12-03T10:36:44Z2009-12-03T10:36:44ZCan you give an example of what you're trying to achieve?http://stackoverflow.com/questions/1835407/301-htaccess-redirect-rule/1835436#1835436Comment by Greg on 301 Htaccess Redirect Rule Greg2009-12-02T21:06:51Z2009-12-02T21:06:51ZNo you shouldn't need a RewriteCond from what you've describedhttp://stackoverflow.com/questions/1832154/php-ternary-statement/1832166#1832166Comment by Greg on Php ternary statementGreg2009-12-02T12:18:55Z2009-12-02T12:18:55ZIt's like using an <code>if ()</code>: <code>if ($output)</code> is the same as <code>if ($output == true)</code> - in the same way <code>$output ? x : y</code> is the same as <code>$output == true ? x : y</code>http://stackoverflow.com/questions/1831933/javascript-window-open-issue-ie7-ie8Comment by Greg on Javascript Window.open Issue IE7 / IE8Greg2009-12-02T10:14:34Z2009-12-02T10:14:34ZPopup blocker? Built-in or otherwisehttp://stackoverflow.com/questions/1828906/will-my-object-always-be-thereComment by Greg on Will my object always "be there"?Greg2009-12-01T21:07:48Z2009-12-01T21:07:48ZIt won't be thrown away but it may be paged to disk by the OShttp://stackoverflow.com/questions/1828760/php-regex-match-first-newline-after-x-characters-for-a-trimming-function/1828795#1828795Comment by Greg on PHP Regex match first newline after x characters for a trimming functionGreg2009-12-01T20:45:46Z2009-12-01T20:45:46ZHope this makes sense... brain is fried...http://stackoverflow.com/questions/1828531/how-can-i-get-yesterdays-date-in-unix-format-in-javascript/1828543#1828543Comment by Greg on how can I get yesterdays date in unix format in javascript?Greg2009-12-01T20:11:36Z2009-12-01T20:11:36ZThat's what the <code>/ 1000</code> is forhttp://stackoverflow.com/questions/1822032/javascript-undefined-error-but-alert-tosource-shows-the-object-existsComment by Greg on javascript undefined error, but alert toSource shows the object existsGreg2009-11-30T20:02:30Z2009-11-30T20:02:30ZLooks OK... have a URL for it?http://stackoverflow.com/questions/1821917/why-doesnt-my-script-tag-work-from-php-file-jquery-involved-here-tooComment by Greg on Why doesn't my <script> tag work from php file? (jQuery involved here too)Greg2009-11-30T19:40:10Z2009-11-30T19:40:10ZHow are you trying to use it? Possibly it's not loaded before you attempt to use it.http://stackoverflow.com/questions/1810655/8-hour-challengeComment by Greg on 8 Hour ChallengeGreg2009-11-27T21:25:25Z2009-11-27T21:25:25ZSooooooo what's the question?http://stackoverflow.com/questions/1799384/how-can-i-sanitize-my-include-statements/1799493#1799493Comment by Greg on How can I sanitize my include statements?Greg2009-11-25T19:55:28Z2009-11-25T19:55:28Zindex.php?page=/etc/passwd&pwnt=truehttp://stackoverflow.com/questions/1799336/jquery-binding-and-unbinding-live-click-events/1799356#1799356Comment by Greg on jQuery: Binding and Unbinding Live Click EventsGreg2009-11-25T19:46:54Z2009-11-25T19:46:54ZI <i>think</i> so...