Yeah, locally. I haven't pushed it yet, but I'd be hesitant to say, "everything works 100%" for a couple of days, just because I need to get full test coverage to be completely confident.
Of course, it worked perfectly before I decided I needed the extra 10% of features I could access if I manually handled the sockets instead of letting php do it for me :)
sigh I should've known better than to expect the php5.4 webserver to allow persistent connections. It adds a Connection: close header to all responses. Looks like I'm going to have to fire up httpd to test persistent connection management.
@Whisperity Okay, thanks for the pointer. but given the multiple warnings on it, I think I'll learn to live wit ha load of old commits with the wrong attribution.
@GordonM Make a full local backup of the repository to somewhere safe, then try to change the history and force push it. If something goes wrong, you can force push the backup and everything is safe again.
This question is not tagged PHP neither it is PHP specific but i needed a general opinion. stackoverflow.com/questions/11811060/… Is regex the right way to solve such problems?
I've began learning php and web development in general, BUT I am a little bit stuck on searching really good literature about web dev.
My goal is to learn and use Symfony2.
Currentle I am searching for practical books about php and especially which will help me understanding symfony2.
So, my q...
Yes , and you might read the title and understand that the codeline above answers the question " Checking if an index in a multidimensional array is an array" — Itamar50 secs ago
In computer science, a nondeterministic algorithm is an algorithm that can exhibit different behaviors on different runs, as opposed to a deterministic algorithm. There are several ways an algorithm may behave differently from run to run. A concurrent algorithm can perform differently on different runs due to a race condition. A probabalistic algorithm's behaviors depends on a random number generator. An algorithm that solves a problem in nondeterministic polynomial time can run in polynomial time or exponential time depending on the choices it makes during execution.
Use
Often in computat...
I'm having a difficult time figuring out how to parse pipelined responses without hammering every line with a regex or loading the entire response stream into memory :/
@LeviMorrison Yeah ... that would make my life significantly easier ... as it stands I'm not sure how else to do it but load all the responses from a given host into memory and do a big preg_match_all to find where each message status line starts :/
@LeviMorrison no -- but HTTP/1.1 supports pipelining on a single connection -- so if you do a requestMulti call with say, three different URIs at google.com, you can open a single connection and pump all three requests up that socket and the remote server will return them in the order they were requested on the one connection.
The problem is determining where each message starts and ends when reading the stream of response info the remote server sends back.
I guess all of the responses are going to be loaded into memory anyway at some point, so it shouldn't be a big deal to just read all the contents of the stream into a string and do a single preg_match_all to find where the individual messages begin and end.
@LeviMorrison No, you're right, but the problem is chunked transfer encodings. They apply only to the entity body and you can't decode them unless you know where they end ...
I don't know ... I'm considering not doing pipelining because it makes it wayyyyyyyyy harder.
i'm looking at the "schema" for a recipe site wherein the user document has a cook profile document embedded in it which has a restaurant document embedded which has an address document embedded and the cook profile also has multiple recipes embedded in it which each have several ingredients embedded along with their quanitities with the units embedded, alongside an embedded video in gridfs
if for a chat functionality if the messages from user1 are sent to the database of user2 and then user2 sees the chat messages after they are fetched from his database and vice versa............. will this make the chatting system slower?
I understand that some people think using mail is wrong, or that it is better to use something like SES, but shouldn't have bearing on whether my question is downvoted or closed.
The close reason says "It's difficult to tell what is being asked here." but I disagree.
The clue is in the title: "How does PHP's mail work?"
From the FAQ: "However, if your motivation is “I would like others to explain ______ to me”, then you are probably OK."
I see no reason why my question doesn't fall within the scope of the SO FAQ.
@Lusitanian we can throw a factory in there to decouple it. It's neater than some loose public domain function ;) and it will make it more easy to generate a signature for oauth1 requests
@PeeHaa that's my understanding from what the person who answered told me before it was closed, I just don't understand why the question was closed since I tried to follow all the rules.
Well... Your original question was a bit vague @TomMarthenal hence the reason it probably got closed as NARQ: "It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ."
I don't really care that much but I just don't understand why some questions are closed and some are OK (I'm sure I could find a heavily upvoted one more ambiguous than mine)
@TomMarthenal Sometimes we all wonder. Sometimes the dumbest answers get upvotes up in the sky, and I sit there watching that and thinking: this is so wrong ;)
I've been trying to trigger an effect through PHP. Basically, when the user enters an invalid password, I want to make the submit button shake. To do that, I need to go through PHP, and attempt to validate the user in my database, if that fails, the following code is supposed to trigger a jQuery ...