User Uberfuzzy - Stack Overflowmost recent 30 from stackoverflow.com2009-12-02T22:39:47Zhttp://stackoverflow.com/feeds/user/314http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1767564/how-to-write-a-single-dimension-array-to-a-file-in-php-a-k-a-fileputcontents-v0How to write a single dimension array to a file in php a.k.a. file_put_contents vs fopen+fwriteUberfuzzy2009-11-20T00:22:06Z2009-11-20T13:58:21Z
<p>Data: <code>$data = array('Alice', 'Bob', 'Carol', 'David', 'Elizabeth', 'Frank');</code></p>
<p><hr></p>
<p>Method A:</p>
<blockquote>
<p><code>file_put_contents('filename.ext', implode("\n", $data) );</code></p>
</blockquote>
<p>Method 2:</p>
<pre>
$fp = fopen('filename.ext', 'w');
foreach($data as $name)
{
fwrite($fp, $name . "\n");
}
fclose($fp);
</pre>
<p><hr></p>
<p>Does one method have any significant penalties over the other?</p>
<p>Any significantly faster speed, even at a cost? at no cost?</p>
<p>Preferences? Is it situational?
Which would you use in production code vs 1-use throwaway scripts?</p>
<p>Note: Please ignore any issues of checking to see if the filename is writable, or filepointer is !false. assume 0 friction, and everything just "works".</p>
http://stackoverflow.com/questions/1486099/any-way-to-keep-curls-cookies-in-memory-and-not-on-disk3Any way to keep curl's cookies in memory and not on diskUberfuzzy2009-09-28T09:09:17Z2009-09-29T03:46:27Z
<p>I'm doing some cURL work in php 5.3.0.</p>
<p>I'm wondering if there is any way to tell the curl handle/object to keep the cookies in memory (assuming I'm reusing the same handle for multiple requests), or to somehow return them and let me pass them back when making a new handle.</p>
<p>Theres this long accepted method for getting them in/out of the request:</p>
<pre><code>curl_setopt($ch, CURLOPT_COOKIEJAR, $filename);
curl_setopt($ch, CURLOPT_COOKIEFILE, $filename);
</code></pre>
<p>But I'm hitting some scenarios where I need to be running multiple copies of a script out of the same directory, and they step on each others cookie files. Yes, I know I could use tempnam() and make sure each run has its own cookie file, but that leads me to my 2nd issue.</p>
<p>There is also the issue of having these cookie files on the disk at all. Disk I/O is slow and a bottle neck I'm sure. I dont want to have to deal with cleaning up the cookie file when the script is finished (if it even exits in a way that lets me clean it up).</p>
<p>Any ideas? Or is this just the way things are?</p>
http://stackoverflow.com/questions/955117/curl-sending-get-instead-of-post/1250257#12502570Answer by Uberfuzzy for curl sending GET instead of POSTUberfuzzy2009-08-09T00:30:17Z2009-08-09T00:30:17Z<p>try throwing in a <code>print_r(curl_getinfo($loginpage))</code> at the end, see what the header data it sent back as.</p>
<p>also, if your trying to fake that your logging in from their site, your going to want to make sure your sending the correct referrer with your post, so that they "think" you were on the website when you sent it.</p>
http://stackoverflow.com/questions/518623/what-is-the-correct-way-to-send-post-data-with-curl-in-php0what is the correct way to send post data with cURL in PHP?Uberfuzzy2009-02-06T00:26:22Z2009-08-06T21:26:28Z
<p>when using cURL in php to send data in a POST, you use set the cURL option CURLOPT_POSTFIELDS to the data</p>
<p>here's some example data
<code>array('foo'=>'bar','ninja'=>'pirate')</code></p>
<p>now here's where i'm confused.</p>
<p>half of the example code i've seen do some preprocessing on the array, and encode and smush the data into a properly formatted url string.</p>
<p>turning our data array into: <code>"foo=bar&ninja=pirate"</code> and then setting that string as the data to CURLOPT_POSTFIELDS</p>
<p>but the other half of the examples i've seen just pass the array directly to CURLOPT_POSTFIELDS and thats it.</p>
<p>the confusing part comes in that they both do the job. given that they both work, i dont think either one can be said to be "correct".</p>
<p>the only advantage i can see of doing the string method is that you can set a parameter into the url that doesnt have a value like <code>"foo=bar&awesome&ninja=pirate"</code>, and i dont know if you can do that via a associative array, since you cant have a key with out a value (i dont think), but it seems like a waste of memory, since your duping the whole array into a string</p>
http://stackoverflow.com/questions/594112/matching-an-ip-to-a-cidr-mask-in-php54matching an IP to a CIDR mask in php5?Uberfuzzy2009-02-27T09:36:56Z2009-06-03T23:15:10Z
<p>I'm looking for quick/simple/(maybe built in that i never noticed before), method for matching a given IP4 dotted quad IP to a CIDR notation mask.</p>
<p>I have a bunch of IPs I need to see if they match a range of IPs.</p>
<p>example:</p>
<pre><code>$ips = array('10.2.1.100', '10.2.1.101', '10.5.1.100', '1.2.3.4');
foreach($ips as $IP)
{
if( cidr_match($IP, '10.2.0.0/16') == true )
{ print "your in the 10.2 subnet\n"; }
}
</code></pre>
<p>solve for cidr_match()</p>
<p>it doesnt really have to be simple, but fast would be good. anything that uses only built in/common functions is a bonus (as i'm likely to get one person to show me something in pear that does this, but i cant depend on pear or that package being installed where my code is deployed)</p>
http://stackoverflow.com/questions/914266/what-is-worse-for-speed-when-loading-css-a-second-link-element-or-import2what is worse for speed when loading CSS, a second LINK element or @import?Uberfuzzy2009-05-27T06:33:38Z2009-05-27T06:41:42Z
<p>need to add a 2nd css stylesheet to a page.</p>
<p>do i add a 2nd link line and load it by url, or add a @import to the original?</p>
<p>what is worse for page load times?
what is worse for server load?</p>
<p>what is better for client side caching?
what is better/more accepted 'in general'?</p>
<p>(note: assume no cdn or memcache, just a normal regular average LAMP webserver setup)</p>
http://stackoverflow.com/questions/841688/windows-command-line-tool-analagous-to-unx-tail-command/841713#8417130Answer by Uberfuzzy for Windows command line tool analagous to UN*X "tail" command?Uberfuzzy2009-05-08T20:45:43Z2009-05-08T20:45:43Z<p>dos's <code>type</code> works like *nux's <code>cat</code>, though just like cat, it does dump the whole file, so its not really a true tail, but its going to be available in a pinch without downloading/installing a true tail substitute.</p>
http://stackoverflow.com/questions/190759/can-php-detect-if-its-run-from-a-cron-job-or-from-the-command-line7Can PHP detect if its run from a cron job or from the command line?Uberfuzzy2008-10-10T10:37:45Z2009-05-01T22:59:03Z
<p>I'm looking for way to PHP to detect if a script was run from a manual invocation on a shell (me logging in and running it), or if it was run from the crontab entry.</p>
<p>I have various maintenance type scripts written in php that i have set to run in my crontab. Occasionally, and I need to run them manually ahead of schedule or if something failed/broken, i need to run them a couple times.</p>
<p>The problem with this is that I also have some external notifications set into the tasks (posting to twitter, sending an email, etc) that I DONT want to happen everytime I run the script manually.</p>
<p>I'm using php5 (if it matters), its a fairly standard linux server environment.</p>
<p>Any ideas?</p>
http://stackoverflow.com/questions/574242/when-posting-an-associative-array-with-curl-do-i-need-to-urlencode-the-contents2When POSTing an associative array with cURL, do I need to urlencode the contents first?Uberfuzzy2009-02-22T03:14:33Z2009-02-22T13:56:01Z
<p>When I assign an array of data to be POSTed as a cURL option (via CURLOPT_POSTFIELDS), do I need to urlencode that data first or will that be taken care of?</p>
http://stackoverflow.com/questions/506621/what-is-the-most-efficient-way-to-fully-resolve-a-url-using-php-and-curl0what is the most efficient way to fully resolve a url (using php and curl)Uberfuzzy2009-02-03T10:22:41Z2009-02-22T06:19:16Z
<p>I'm looking for the most effecient way to resolve a given url to its final end point, following all 30x redirects and location headers.</p>
<p>Basically, I have a bunch of URLs like <a href="http://foo.com" rel="nofollow">http://foo.com</a> that when you go to them, they end up at a page like <a href="http://foo.com/Welcome.html" rel="nofollow">http://foo.com/Welcome.html</a> and i need to find that last url.</p>
<p>right now, i'm using <code>CURLOPT_FOLLOWLOCATION</code> and <code>CURLOPT_NOBODY</code> (since i really dont care about the text returned)
and once its exec'd, i run curl_getinfo() and save the 'url' key from that array.</p>
<p>i just keep thinking that this is such a huge waste of <code><something></code> and there is likely a better way.</p>
<p>EDIT: For those that read this later. I did end up finding a better solution (that didnt involve curl), see <a href="http://php.net/manual/en/function.get-headers.php" rel="nofollow">get_headers()</a> in php5+</p>
http://stackoverflow.com/questions/479472/is-there-a-lint-like-program-for-crontab1Is there a lint like program for crontab?Uberfuzzy2009-01-26T11:30:03Z2009-01-26T12:34:44Z
<p>Is there anything like lint for crontab? I'd like to know that i've got all my spaces and stars sorted out without waiting for something to not work.</p>
http://stackoverflow.com/questions/479490/can-i-make-more-then-one-request-on-a-curl-connection1Can I make more then one request on a curl connection?Uberfuzzy2009-01-26T11:38:20Z2009-01-26T11:45:48Z
<p>In PHP (v5), is there a way to make multiple requests on an open curl connection?</p>
<p>I'm noticing that my big bottleneck is the timeout/teardown of the connection its self (i'm making lots of small data requests that finish quickly), so I would like to be able to do something like open</p>
<p>init curl connection,</p>
<p>set url/params, do request, get results
set url/params, do request, get results
</p>
<p>close curl</p>
<p>I just dont know if this is possible at all.</p>
http://stackoverflow.com/questions/186338/why-is-requireonce-so-bad-to-use10Why is require_once so bad to use?Uberfuzzy2008-10-09T08:03:02Z2008-10-12T02:11:59Z
<p>Everything I read about better php coding practices keeps saying don't use require_once because of speed.</p>
<p>Why is this?</p>
<p>What is the proper/better way to do the same thing as require_once</p>
<p>(if it matters, i'm using php5)</p>
http://stackoverflow.com/questions/192092/in-php-best-way-to-ensure-current-working-directory-is-same-as-script-when-usi1In PHP, Best way to ensure current working directory is same as script , when using CLIUberfuzzy2008-10-10T16:15:48Z2008-10-10T16:35:58Z
<p>When calling php via cli, the current directory is NOT changed to the one of the script. All the scripts i have running in crontab run via the CLI, so this is an issue.</p>
<p>I'm currently <em>fixing</em> the problem by doing a chdir() with the absolute path where the script is, but i REALLY dont like hardcoding paths into stuff like that.</p>
<p>I'm looking for the most portable/reliable method for ensuring that the current working directory is the one where the script it is at.</p>
http://stackoverflow.com/questions/1383/what-is-unit-testing44What is unit testing?Uberfuzzy2008-08-04T16:27:39Z2008-09-19T12:45:14Z
<p>Saw many questions asking 'how' to unittest in a specific language, but no question asking 'what', 'why', and 'when'</p>
<ul>
<li>What is it?</li>
<li>What does it do for me?</li>
<li>Why should I use it?</li>
<li>When should I use it (also when not)?</li>
<li>Common pitfalls/misconceptions</li>
</ul>
http://stackoverflow.com/questions/12896/parsing-raw-email-in-php1parsing raw email in phpUberfuzzy2008-08-15T23:50:17Z2008-08-28T22:23:30Z
<p>i'm looking for good/working/simple to use php code for parsing raw email into parts.</p>
<p>i've written a couple of brute force solutions, but everytime, one small change/header/space/something comes along and my whole parser fails and the project falls apart.</p>
<p>and before i get pointed at PEAR/PECL, i need actual code. my host has some screwy config or something, i can never seem to get the .so's to build right. if i do get the .so made, some difference in path/environment/php.ini doesnt always make it available (apache vs cron vs cli)</p>
<p>oh, and one last thing, i'm parsing the raw email text, NOT pop3, and NOT imap. its being piped into the php script via a .qmail email redirect.</p>
<p>i'm not expecting SOF to write it for me, i'm looking for some tips/starting points on doing it "right". this is one of those "wheel" problems that i know has already been solved.</p>
http://stackoverflow.com/questions/13620/speed-difference-in-using-inline-strings-vs-concatenation-in-php54Speed difference in using inline strings vs concatenation in php5?Uberfuzzy2008-08-17T13:19:32Z2008-08-19T13:44:12Z
<p>(assume php5) consider</p>
<pre><code><?php
$foo = 'some words';
//case 1
print "these are $foo";
//case 2
print "these are {$foo}";
//case 3
print 'these are ' . $foo;
</code></pre>
<p>Is there much of a difference between 1 and 2?</p>
<p>If not, what about between 1/2 and 3?</p>
http://stackoverflow.com/questions/13620/speed-difference-in-using-inline-strings-vs-concatenation-in-php5/16136#161360Answer by Uberfuzzy for Speed difference in using inline strings vs concatenation in php5?Uberfuzzy2008-08-19T13:17:18Z2008-08-19T13:17:18Z<p>@gomercobs who said anything about databases? i was just asking a question that has been rolling around in my head since i started using php years ago.</p>
http://stackoverflow.com/questions/12896/parsing-raw-email-in-php/13606#136060Answer by Uberfuzzy for parsing raw email in phpUberfuzzy2008-08-17T12:43:13Z2008-08-17T12:43:13Z<p>@jj33 yeah its the recursion part of mime that that keeps getting me, the rest i have a decent grasp on after rewriting this a couple times.</p>
<p>@Flubba that actually was very insightful, i flipped through the slides. i'll have to listen to the mp3 later.</p>
http://stackoverflow.com/questions/12896/parsing-raw-email-in-php/13001#130010Answer by Uberfuzzy for parsing raw email in phpUberfuzzy2008-08-16T05:09:11Z2008-08-16T05:09:11Z<p>yeah, ive been able to write a basic parser, based off that rfc and some other basic tutorials. but its the multipart mime nested boundaries that keep messing me up.</p>
<p>i found out that MMS (not SMS) messages sent from my phone are just standard emails, so i have a system that reads the incoming email, checks the from (to only allow from my phone), and uses the body part to run different commands on my server. its sort of like a remote control by email.</p>
<p>because the system is designed to send pictures, its got a bunch of differently encoded parts. a mms.smil.txt part, a text/plain (which is useless, just says 'this is a html message'), a application/smil part (which the part that phones would pic up on), a text/html part with a advertisement for my carrier, then my message, but all wrapped in html, then finally a textfile attachment with my plain message (which is the part i use) (if i shove an image as an attachment in the message, its put at attachment 1, base64 encoded, then my text portion is attached as attachment 2)</p>
<p>i had it working with the exact mail format from my carrier, but when i ran a message from someone elses phone through it, it failed in a whole bunch of miserable ways.</p>
<p>i have other projects i'd like to extend this phone->mail->parse->command system to, but i need to have a stable/solid/generic parser to get the different parts out of the mail to use it.</p>
<p>my end goal would be to have a function that i could feed the raw piped mail into, and get back a big array with associative sub-arrays of headers var:val pairs, and one for the body text as a whole string</p>
<p>the more and more i search on this, the more i find the same thing: giant overdeveloped mail handling packages that do everything under the sun thats related to mails, or useless (to me, in this project) tutorials.</p>
<p>i think i'm going to have to bite the bullet and just carefully write something my self.</p>
http://stackoverflow.com/questions/1383/what-is-unit-testing/1492#14929Answer by Uberfuzzy for What is unit testing?Uberfuzzy2008-08-04T18:44:35Z2008-08-04T18:44:35Z<p>Sorry for asking such a "dumb" question.</p>
<p>I was looking for a human-ized real world answer, not an dry encyclopedia answer. I hoped it would entice other quality links other then a link to en:wp, as not every knowledgeable person has taken time to add to 1 wiki page on the mattter.</p>
<p>And figured it would be a good title to show up if you went looking at the "unit-testing" tag here from another article (which I did)</p>http://stackoverflow.com/questions/1284/catching-sql-injection-and-other-malicious-web-requests/1356#13566Answer by Uberfuzzy for Catching SQL Injection and other Malicious Web RequestsUberfuzzy2008-08-04T15:43:50Z2008-08-04T15:43:50Z<p>Your almost looking at it the wrong way, no 3party tool that is not aware of your application methods/naming/data/domain is going to going to be able to perfectly protect you.</p>
<p>Something like SQL injection prevention is something that has to be in the code, and best written by the people that wrote the SQL, because they are the ones that will know what should/shouldnt be in those fields (unless your project has very good docs)</p>
<p>Your right, this all has been done before. You dont quite have to reinvent the wheel, but you do have to carve a new one because of a differences in everyone's axle diameters.</p>
<p>This is not a drop-in and run problem, you really do have to be familiar with what exactly SQL injection is before you can prevent it. It is a sneaky problem, so it takes equally sneaky protections.</p>
<p>These 2 links taught me far more then the basics on the subject to get started, and helped me better phrase my future lookups on specific questions that weren't answered.</p>
<ul>
<li><a href="http://en.wikipedia.org/wiki/SQL_injection" rel="nofollow">http://en.wikipedia.org/wiki/SQL_injection</a></li>
<li><a href="http://www.unixwiz.net/techtips/sql-injection.html" rel="nofollow">http://www.unixwiz.net/techtips/sql-injection.html</a></li>
</ul>
<p>And while this one isnt quite a 100% finder, it will "show you the light" on existing problem in your existing code, but like with webstandards, dont stop coding once you pass this test.</p>
<ul>
<li><a href="http://www.securitycompass.com/exploitme.shtml" rel="nofollow">http://www.securitycompass.com/exploitme.shtml</a></li>
</ul>http://stackoverflow.com/questions/1767564/how-to-write-a-single-dimension-array-to-a-file-in-php-a-k-a-fileputcontents-v/1767973#1767973Comment by Uberfuzzy on How to write a single dimension array to a file in php a.k.a. file_put_contents vs fopen+fwriteUberfuzzy2009-11-20T10:47:03Z2009-11-20T10:47:03Zwish i could switch from serialize to json_serialize, but its not my code, and much of it has legacy ties to other external things i cant get changed :(http://stackoverflow.com/questions/1767564/how-to-write-a-single-dimension-array-to-a-file-in-php-a-k-a-fileputcontents-v/1767605#1767605Comment by Uberfuzzy on How to write a single dimension array to a file in php a.k.a. file_put_contents vs fopen+fwriteUberfuzzy2009-11-20T10:44:29Z2009-11-20T10:44:29ZActually, in most cases, I do actually need it in plain text "1 item per line" files, as they are work queues for other scripts, but need to be human skimmed/edited to remove a few lines.
script-to-script i do use serialize, no question asked, and in which case, i use f_p_c because theres no way to get the results of serialize() except as 1 huge string anyway.http://stackoverflow.com/questions/1767564/how-to-write-a-single-dimension-array-to-a-file-in-php-a-k-a-fileputcontents-v/1767587#1767587Comment by Uberfuzzy on How to write a single dimension array to a file in php a.k.a. file_put_contents vs fopen+fwriteUberfuzzy2009-11-20T10:37:25Z2009-11-20T10:37:25Zwould it change your statement if the data array wasnt 6 items, but 60000? that would mean building (via the implode) and buffering temporarily, a very large string in memory, in addition to the very large array you already have, meaning, for brief moment, you need to have 2 copies of it in ram. http://stackoverflow.com/questions/1053060/file-put-contents-with-array/1053069#1053069Comment by Uberfuzzy on file put contents with arrayUberfuzzy2009-11-19T23:56:06Z2009-11-19T23:56:06Zjust a note, your missing a ) on the 2nd linehttp://stackoverflow.com/questions/1732348/regex-match-open-tags-except-xhtml-self-contained-tags/1732454#1732454Comment by Uberfuzzy on RegEx match open tags except XHTML self-contained tagsUberfuzzy2009-11-14T13:17:56Z2009-11-14T13:17:56Z+1 for... awesome? also getting printed and framedhttp://stackoverflow.com/questions/594112/matching-an-ip-to-a-cidr-mask-in-php5/607242#607242Comment by Uberfuzzy on matching an IP to a CIDR mask in php5?Uberfuzzy2009-03-07T06:05:48Z2009-03-07T06:05:48Zyou might want to try asking a new question, and tagging it with C++ as the right people are more likely to see it.http://stackoverflow.com/questions/574242/when-posting-an-associative-array-with-curl-do-i-need-to-urlencode-the-contents/574246#574246Comment by Uberfuzzy on When POSTing an associative array with cURL, do I need to urlencode the contents first?Uberfuzzy2009-02-22T03:23:48Z2009-02-22T03:23:48ZIt only says anything about the urlencoded part if your passing a string of data, nothing about if you need to preencode an array.http://stackoverflow.com/questions/502502/curl-changing-the-url-after-postComment by Uberfuzzy on cURL changing the URL after POSTUberfuzzy2009-02-03T10:22:27Z2009-02-03T10:22:27Zthrow a print_r( curl_getinfo($ch) ); after the curl_exec() to see what you got back.http://stackoverflow.com/questions/482202/is-there-a-performance-benefit-single-quote-vs-double-quote-in-phpComment by Uberfuzzy on Is there a performance benefit single quote vs double quote in php?Uberfuzzy2009-01-27T04:54:04Z2009-01-27T04:54:04Ztheres some good speed inforamtion about this issue here, <a href="http://stackoverflow.com/questions/13620/" rel="nofollow">stackoverflow.com/questions/13620</a>http://stackoverflow.com/questions/190759/can-php-detect-if-its-run-from-a-cron-job-or-from-the-command-line/190796#190796Comment by Uberfuzzy on Can PHP detect if its run from a cron job or from the command line?Uberfuzzy2008-10-10T15:44:21Z2008-10-10T15:44:21Zi never knew you could put other commands/variable lines in the crontab like that. i only ever learned the syntax for the timed commands. this plus the php $_ENV and $_SERVER, will help what i'm trying to achieve. thankshttp://stackoverflow.com/questions/190759/can-php-detect-if-its-run-from-a-cron-job-or-from-the-command-line/191284#191284Comment by Uberfuzzy on Can PHP detect if its run from a cron job or from the command line?Uberfuzzy2008-10-10T14:15:32Z2008-10-10T14:15:32Zafter looking into it, this seem like the best method. between _ENV + _SERVER, i'm pretty sure i can confidently detect who/where/who is running it, and act accordingly. the CRON=running line in crontab will help too.http://stackoverflow.com/questions/190759/can-php-detect-if-its-run-from-a-cron-job-or-from-the-command-line/190862#190862Comment by Uberfuzzy on Can PHP detect if its run from a cron job or from the command line?Uberfuzzy2008-10-10T13:48:43Z2008-10-10T13:48:43ZYes, very interesting approach. Could have uses for other non-php things too.http://stackoverflow.com/questions/186338/why-is-requireonce-so-bad-to-use/186406#186406Comment by Uberfuzzy on Why is require_once so bad to use?Uberfuzzy2008-10-09T08:46:40Z2008-10-09T08:46:40Zone is, <a href="http://www.chazzuka.com/blog/?p=163" rel="nofollow">chazzuka.com/blog/?p=163</a>
they really didnt 'not to', but too many 'expensive' things add up.
and actually, all included/required files are added to an internal array (theres a function to return it), i guess the _once's have to loop that array and do strcmp's, which would add uphttp://stackoverflow.com/questions/170019/in-php-will-a-session-be-created-if-a-browser-is-not-used/170031#170031Comment by Uberfuzzy on In PHP will a session be created if a browser is not usedUberfuzzy2008-10-04T09:29:16Z2008-10-04T09:29:16Z> but if the client doesn't support cookies (like curl or wget)
actually. both support some way of storing/loading a cookie file