Search Results

1
vote
5answers
2k views

parsing raw email in php

i'm looking for good/working/simple to use php code for parsing raw email into parts. i've written a couple of brute force solutions, but everytime, one small change/header/space/something …
4
votes
5answers
550 views

Speed difference in using inline strings vs concatenation in php5?

(assume php5) consider <?php $foo = 'some words'; //case 1 print "these are $foo"; //case 2 print "these are {$foo}"; //case 3 print 'these are ' . $foo; Is …
11
votes
12answers
1k views

Why is require_once so bad to use?

Everything I read about better php coding practices keeps saying don't use require_once because of speed. Why is this? What is the proper/better way to do the same thing as require_ …
8
votes
10answers
2k views

Can PHP detect if its run from a cron job or from the command line?

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. I have various maintena …
1
vote
2answers
260 views

In PHP, Best way to ensure current working directory is same as script , when using CLI

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. I'm currently fi …
1
vote
2answers
202 views

Can I make more then one request on a curl connection?

In PHP (v5), is there a way to make multiple requests on an open curl connection? I'm noticing that my big bottleneck is the timeout/teardown of the connection its self (i'm making lots of …
0
votes
1answer
125 views

what is the most efficient way to fully resolve a url (using php and curl)

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. Basically, I have a bunch of URLs like …
0
votes
2answers
406 views

what is the correct way to send post data with cURL in PHP?

when using cURL in php to send data in a POST, you use set the cURL option CURLOPT_POSTFIELDS to the data here's some example data array('foo'=>'bar','ninja'=>'pirate') …
2
votes
4answers
573 views

When POSTing an associative array with cURL, do I need to urlencode the contents first?

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? …
4
votes
4answers
508 views

matching an IP to a CIDR mask in php5?

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. I have a bunch of IPs I need to see if the …
3
votes
3answers
157 views

Any way to keep curl’s cookies in memory and not on disk

I'm doing some cURL work in php 5.3.0. 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 requ …
0
votes
4answers
53 views

How to write a single dimension array to a file in php a.k.a. file_put_contents vs fopen+fwrite

Data: $data = array('Alice', 'Bob', 'Carol', 'David', 'Elizabeth', 'Frank'); Method A: file_put_contents('filename.ext', implode("\n", …
0
votes

parsing raw email in php

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. i found out that MMS (n …
0
votes

parsing raw email in php

@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. @Flubba that actually was very insightful, i fli …
0
votes

Speed difference in using inline strings vs concatenation in php5?

@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. …

1 2 next
15 30 50 per page